html,
body {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-size: cover;
  color: #343a40;
 /* overflow-x: hidden; */ /* Aqui nao deixa o menu descer junto com a pagina */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.services .container,
.about .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sectionTitle {
  text-align: center !important;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  position: relative;
  color: #343a40;
  padding-bottom: 15px;
  width: 100%;
}

.sectionTitle::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: #ffa500;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
  padding-top: 130px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.8) 0%, rgba(0, 51, 102, 0.7) 100%);
  z-index: 1;
}

.heroContent {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  transform: translateY(-30px);
}

.heroText {
  max-width: 600px;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.heroButton {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffa500;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.heroButton:hover {
  background-color: #e69500;
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.scrollDown {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: white;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.about {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.aboutTitle {
  text-align: left;
  font-size: 2.5rem;
  color: #343a40;
  margin-bottom: 2rem;
  width: 100%;
  margin-left: 0;
}

.aboutContentWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
}

.aboutImageWrapper {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.aboutImageWrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
}

.aboutTextWrapper {
    flex: 1.5;
    min-width: 300px;
    color: #343a40;
}

.aboutTextWrapper p {
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.aboutButton {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffa500;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.aboutButton:hover {
    background-color: #e69500;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.partnersSection {
  padding: 5rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.partnersSection .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.partnersTitle {
  text-align: left;
  font-size: 2.5rem;
  color: #0056b3;
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  padding: 0;
}

.partnersContentWrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  position: relative;
}


.partnersDescription {
  flex: 0 0 55%;
  text-align: justify;
  margin-bottom: 0;
  color: #343a40;
  line-height: 1.8;
  padding: 0;
  max-width: 600px;
}

.partnersList {
  flex: 0 0 75%;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0;
  align-self: flex-start;
  position: relative;
  top: -4rem;
}

.partnersList li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.1rem;
  color: #343a40;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.partnerIcon {
  font-size: 1.8rem;
  color: #ffa500;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.services {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff, #f0f5ff);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230056b3' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.serviceColumns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.serviceColumn {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.serviceColumn:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.serviceColumnTitle {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0056b3;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 0.75rem;
}

.serviceIcon {
    margin-right: 10px;
    font-size: 1.8rem;
    color: #ffa500;
}

.serviceList {
    list-style-type: none;
    padding: 0;
}

.serviceList li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
    color: #495057;
}

.serviceList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffa500;
    font-weight: bold;
}

.fadeInUp {
    animation: fadeInUp 1s ease-out;
}

#backToTop {
  position: fixed;
  bottom: 120px;
  right: 20px;
  background-color: #ffa500;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  opacity: 0;
}

#backToTop:hover {
  background-color: #e69500;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.contact-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.contact-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section .section-title {
  text-align: center;
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
  color: #343a40;
  font-size: 2.5rem;
}

.contact-section .section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: #ffa500;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: white;
  padding: 0 0.5rem;
  transition: all 0.3s;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
  top: -0.5rem;
  font-size: 0.8rem;
  color: #0056b3;
}

.submit-button {
  background: #ffa500;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.submit-button:hover {
  background: #e69500;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.info-card {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.info-card h3 {
  color: #0056b3;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card i {
  color: #ffa500;
}

.map-container {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #0056b3;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.map-link:hover {
  color: #003366;
  text-decoration: underline;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.footer {
  background-color: #212529;
  color: #adb5bd;
  padding: 40px 20px;
  margin-top: 0;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.footerContainer {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.copyright p {
  margin: 0;
}

.footerNav {

}

.footerLinks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}

.footerLinks a {
  color: #ced4da;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footerLinks a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* CRÉDITO DO DESENVOLVEDOR COM EFEITO */
.developer-credit {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #adb5bd;
  position: relative;
}

.developer-credit a {
  color: #ffa500;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.developer-credit a:hover {
  color: #fff;
  text-decoration: underline;
}

.developer-credit a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #ffa500;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.developer-credit a:hover::after {
  transform: scaleX(1);
}

/* Efeito de pulsação sutil */
.pulse-effect {
  animation: gentlePulse 6s infinite;
}

@keyframes gentlePulse {
  0%, 100% {
      opacity: 0.9;
      transform: scale(1);
  }
  50% {
      opacity: 1;
      transform: scale(1.02);
      text-shadow: 0 0 5px rgba(255, 165, 0, 0.3);
  }
}

/* Efeito de brilho ao passar o mouse */
.developer-credit:hover {
  animation: none;
}

.developer-credit:hover a {
  text-shadow: 0 0 8px rgba(255, 165, 0, 0.5);
}

/* Responsivo */
@media (max-width: 768px) {
  .developer-credit {
      font-size: 0.8rem;
      padding: 15px 0 5px;
  }
}

.socialMedia {
  display: flex;
  align-items: center;
  gap: 18px;
}

.socialMedia a {
  color: #ced4da;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.socialMedia a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.navbar {
  background-color: #212529;
  padding: 0.5rem 0;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1010;
}
 
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 65px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1012;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: block;
  max-height: 75px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.menu li {
  margin-left: 30px;
  position: relative;
}

.menu li:first-child {
  margin-left: 0;
}

.menuLink {
  text-decoration: none;
  color: #fff;
  padding: 10px 5px;
  position: relative;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
}

.menuLink.active,
.menuLink:active {
  color: #ffa500;
  transition: color 0.3s ease;
}

.menuLink::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #79A3DA;
  transition: width 0.3s ease;
}

.menuLink:hover {
  color: #79A3DA;
}

.menuLink:hover::after {
  width: 100%;
}

.menuToggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1011;
  padding: 10px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.menuToggle:focus {
  outline: none;
}

.menuToggle .hamburger {
    display: inline;
}
.menuToggle .close {
    display: none;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== */
/* SEÇÃO DE SERVIÇOS */
/* ==================== */

.services {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #ffffff, #f0f5ff);
  position: relative;
  padding-bottom: 100px;
}

.services::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230056b3' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

.serviceColumns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* CARD DE SERVIÇO (HOME) */
.serviceColumn {
  flex: 1;
  min-width: 300px;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.serviceColumn-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.serviceColumn:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #ffa500;
}

.serviceColumnTitle {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #0056b3;
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.serviceColumn:hover .serviceColumnTitle {
  color: #ffa500;
}

.serviceIcon {
  margin-right: 10px;
  font-size: 1.8rem;
  color: #ffa500;
  transition: color 0.3s ease;
}

.serviceList {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.serviceList li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
  color: #495057;
}

.serviceList li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffa500;
  font-weight: bold;
}

/* CARROSSEL DE SERVIÇOS REALIZADOS */
.services-carousel-container {
  margin: 60px auto 80px;
  padding: 0 20px;
  max-width: 1200px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.carousel-title {
  text-align: center;
  font-size: 1.8rem;
  color: #343a40;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.carousel-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: #ffa500;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.services-carousel {
  position: relative;
  margin: 0 auto;
}

.carousel-slide {
  padding: 0 15px;
  outline: none;
  transition: all 0.3s ease;
}

.carousel-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover; /* ou 'contain' se quiser ver tudo */
  object-position: center; /* centraliza o foco do recorte */
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 86, 179, 0.1);
  transition: all 0.3s ease;
}


.carousel-slide:hover img {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.slide-caption {
  text-align: center;
  margin-top: 15px;
  font-weight: 500;
  color: #343a40;
  font-size: 1.1rem;
}

/* Slick Carousel Custom Styles */
.slick-prev, 
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
  background-color: rgba(0, 86, 179, 0.7);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.slick-prev:hover, 
.slick-next:hover {
  background-color: #0056b3;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

.slick-prev:before, 
.slick-next:before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  font-size: 20px;
}

.slick-prev:before {
  content: '\f053';
}

.slick-next:before {
  content: '\f054';
}

.slick-dots {
  bottom: -50px;
}

.slick-dots li button:before {
  color: #adb5bd;
  opacity: 1;
  font-size: 10px;
}

.slick-dots li.slick-active button:before {
  color: #0056b3;
}

/* Responsividade */
@media (max-width: 992px) {
  .carousel-slide img {
      height: 240px;
  }
}

@media (max-width: 768px) {
  .services-carousel-container {
      margin-top: 40px;
  }
  
  .carousel-title {
      font-size: 1.5rem;
      margin-bottom: 25px;
  }
  
  .carousel-slide img {
      height: 200px;
  }
  
  .slide-caption {
      font-size: 1rem;
  }
  
  .slick-prev, 
  .slick-next {
      width: 35px;
      height: 35px;
  }
  
  .slick-prev {
      left: -15px;
  }
  
  .slick-next {
      right: -15px;
  }
}

@media (max-width: 480px) {
  .carousel-slide img {
      height: 180px;
  }
  
  .slick-prev, 
  .slick-next {
      width: 30px;
      height: 30px;
  }
  
  .slick-prev:before, 
  .slick-next:before {
      font-size: 16px;
  }
}

/* PÁGINA DE SERVIÇOS DETALHADA */
.services-page {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.service-detail {
  margin-bottom: 4rem;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-header {
  background: #0056b3;
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.service-icon-lg {
  font-size: 2rem;
  color: #ffa500;
}

.service-content {
  display: flex;
  padding: 2rem;
  gap: 3rem;
}

.service-content.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-description {
  flex: 1.5;
}

.service-description h3 {
  color: #0056b3;
  margin-top: 0;
  font-size: 1.5rem;
}

.service-description ul {
  list-style-type: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-description li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  line-height: 1.6;
}

.service-description li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffa500;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}

.service-contact-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffa500;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.service-contact-button:hover {
  background-color: #e69500;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .serviceColumns {
      gap: 1.5rem;
  }
  
  .serviceColumn {
      min-width: 45%;
  }
}

@media (max-width: 768px) {
  .services {
      padding: 3rem 0;
  }
  
  .serviceColumn {
      min-width: 100%;
  }
  
  .service-content,
  .service-content.reverse {
      flex-direction: column;
      padding: 1.5rem;
      gap: 2rem;
  }
  
  .service-image {
      min-width: 100%;
  }
}

@media (max-width: 480px) {
  .serviceColumnTitle {
      font-size: 1.3rem;
  }
  
  .serviceList li {
      font-size: 0.9rem;
  }
  
  .service-header h2 {
      font-size: 1.5rem;
  }
  
  .service-description h3 {
      font-size: 1.3rem;
  }
}

@media (min-width: 992px) and (max-width: 1920px) {
  .partnersContentWrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .partnersDescription {
    flex: 0 0 50%;
    max-width: 600px;
    text-align: left;
    padding-right: 20px;
  }

  .partnersList {
    flex: 0 0 50%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 0;
    position: relative;
    top: 0;
    left: 0;
  }

  .partnersList li {
    padding: 15px;
    font-size: 0.95rem;
  }
}

@media (min-width: 769px) {
  .menuToggle {
    display: none;
  }
}

@media (max-width: 1920px) {
  .partnersList {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1.5rem;
    margin-top: -2rem;
  }

  .partnersList li {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .partnersDescription {
    margin-bottom: 1rem;
  }
}

@media (max-width: 992px) {
  .container:not(.navbar .container) {
      max-width: 90%;
  }

  .aboutContentWrapper,
  .partnersContentWrapper {
      gap: 2rem;
  }

  .partnersDescription {
      flex: 0 0 100%;
      max-width: 100%;
  }

  .partnersList {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  #backToTop {
      bottom: 100px;
      right: 15px;
      width: 35px;
      height: 35px;
      font-size: 1rem;
  }

  .navbar .container {
    padding: 0 15px;
    min-height: 55px;
  }

  .menu {
    display: flex;
    visibility: visible;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #212529;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 70px 0 30px 0; /* Ajustado o padding-top */
    z-index: 1005;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .menu.active {
    transform: translateY(0);
  }

  .menu li {
    margin: 0;
    width: 100%;
    max-width: none;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .menu.active li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.08s * var(--i));
  }
  .menu li:nth-child(1) { --i: 1; }
  .menu li:nth-child(2) { --i: 2; }
  .menu li:nth-child(3) { --i: 3; }
  .menu li:nth-child(4) { --i: 4; }

  .menuLink {
    padding: 15px 20px;
    font-size: 1.2rem;
    width: 100%;
    border-bottom: 1px solid #343a40;
    display: block;
    color: #fff;
    text-align: center;
  }
   .menu li:last-child .menuLink {
      border-bottom: none;
   }

  .menuLink::after {
     display: none;
  }
   .menuLink.active,
   .menuLink:active {
     color: #ffa500;
     background-color: rgba(255, 165, 0, 0.05);
   }
   .menuLink:hover {
      background-color: rgba(255, 255, 255, 0.05);
      color: #fff;
   }

  .menuToggle {
    display: block;
    position: relative;
    z-index: 1011;
    color: #fff;
    font-size: 24px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .logo img {
    max-height: 45px;
  }

  .hero {
      height: auto;
      min-height: 70vh;
      padding: 120px 0 60px;
  }

  .heroContent {
      transform: none;
      text-align: center;
      padding: 0 20px;
  }

  .title {
      font-size: 2rem;
      line-height: 1.3;
  }

  .subtitle {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
  }

  .about {
      padding: 4rem 0;
  }

  .aboutContentWrapper {
      flex-direction: column;
      gap: 2rem;
  }

  .aboutImageWrapper {
      order: 1;
      max-width: 80%;
  }

  .aboutTextWrapper {
      order: 2;
      text-align: center;
  }

  .aboutTextWrapper p,
  .partnersDescription {
      text-align: center;
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      color: #343a40;
  }

  .partnersSection {
    padding: 4rem 1.5rem;
  }

  .partnersContentWrapper {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .partnersTitle {
    text-align: center;
    font-size: 2rem;
    padding: 0 1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
  }

    .partnersDescription {
      width: 100%;
      max-width: 500px;
      margin: 0 auto 3.5rem auto;
      padding: 0 1rem;
      text-align: center;
      font-size: 1rem;
      line-height: 1.7;
  }

  .partnersList {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      width: 90%;
      margin: 0 auto;
  }

  .partnersList li {
      text-align: left;
      justify-content: flex-start;
      font-size: 1rem;
      padding: 0.75rem;
  }

  .partnerIcon {
      margin-right: 0.5rem;
  }

  .services {
      padding: 4rem 0;
  }

  .serviceColumnTitle {
    color: #0056b3;
    transition: color 0.3s;
  }

.heroButton,
  .aboutButton {
      display: inline-block;
      padding: 12px 30px;
      background-color: #ffa500;
      color: white !important;
      text-decoration: none;
      font-weight: 600;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .heroButton:hover,
  .aboutButton:hover {
      background-color: #e69500;
      transform: translateY(-3px);
      box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 3rem 0;
  }

  .contact-section .section-title {
    font-size: 2rem;
  }

  .whatsapp-button {
      width: 50px;
      height: 50px;
      font-size: 25px;
      bottom: 15px;
      right: 15px;
  }

  .footerContainer {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footerNav {
    order: 1;
  }
  .footerLinks {
    justify-content: center;
    gap: 20px;
  }
  .socialMedia {
    justify-content: center;
    order: 2;
    margin-top: 5px;
  }
  .copyright{
    order: 0;
  }
}

@media (max-width: 480px) {
  .container:not(.navbar .container) {
      padding: 0 15px;
  }

  .title {
      font-size: 1.6rem;
  }

  .subtitle {
      font-size: 0.9rem;
  }

  .sectionTitle,
  .partnersTitle {
      font-size: 1.6rem;
      margin-bottom: 1.5rem;
  }

  .aboutTextWrapper p,
  .partnersDescription p {
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 1rem;
  }

  .partnersList {
      gap: 1rem;
  }

  .partnersList li {
      font-size: 0.9rem;
      line-height: 1.4;
      padding: 0.5rem;
  }

  .partnerIcon {
      font-size: 1.2rem;
  }

  .serviceColumnTitle {
      font-size: 1.3rem;
  }

  .heroButton,
  .aboutButton {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .heroButton:hover,
  .aboutButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.12);
  }
}

/* Estilo para a seção de redes sociais */
.socialMedia a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.follow-text {
  font-size: 14px;
  font-weight: 500;
}

.socialMedia i {
  font-size: 20px;
}

.socialMedia a:hover {
  color: #E1306C; 
}

/* Estilos para a seção Sobre Nós */
.about {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.aboutContent {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.aboutImage {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.aboutImage img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.aboutImage img:hover {
  transform: scale(1.02);
}

.aboutText {
  flex: 1.5;
  min-width: 300px;
}

.aboutText p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #495057;
}

.btnSaibaMais {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0056b3;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btnSaibaMais:hover {
  background-color: #003d80;
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Estilos para seção Por que escolher a RSJ */
.whyChooseUs {
  padding: 5rem 0;
  background-color: #ffffff;
  position: relative;
}

.whyChooseUs::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230056b3' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

.advantagesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.advantageCard {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s;
}

.advantageCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantageIcon {
  font-size: 2.5rem;
  color: #ffa500;
  margin-bottom: 1rem;
}

.advantageCard h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #0056b3;
}

.advantageCard p {
  color: #495057;
  line-height: 1.6;
}

/* Estilos para seção Clientes e Parceiros */
.clientsPartners {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.clientsSlider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.clientSlide {
  flex: 0 1 180px;
  height: 120px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  transition: all 0.3s;
}

.clientSlide:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.clientSlide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.clientsText {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #495057;
  line-height: 1.7;
}

/* Estilos para seção Depoimentos */
.testimonials {
  padding: 5rem 0;
  background-color: #ffffff;
  position: relative;
}

.testimonialsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonialCard {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s;
}

.testimonialCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonialContent {
  padding: 2rem;
  position: relative;
}

.testimonialContent::before {
  content: '"';
  font-size: 4rem;
  color: #f0f0f0;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonialContent p {
  position: relative;
  z-index: 1;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.stars {
  color: #ffa500;
  margin-bottom: 1rem;
}

.testimonialAuthor {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #f8f9fa;
}

.testimonialAvatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.authorInfo h4 {
  margin: 0;
  color: #0056b3;
}

.authorInfo p {
  margin: 0;
  color: #6c757d;
  font-size: 0.9rem;
}

/* Estilos para seção Contato Rápido */
.quickContact {
  padding: 4rem 0;
  background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 51, 102, 0.9)), url('/images/bg-contact.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.quickContactContent {
  max-width: 800px;
  margin: 0 auto;
}

.quickContactContent h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.quickContactContent p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.quickContactInfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contactItem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.contactItem i {
  font-size: 1.5rem;
  color: #ffa500;
}

.btnContact {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffa500;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btnContact:hover {
  background-color: #e69500;
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* Estilos para seção Blog/Artigos */
.blog {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.blogPosts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.blogPost {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.blogPost:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blogImage {
  height: 200px;
  overflow: hidden;
}

.blogImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blogPost:hover .blogImage img {
  transform: scale(1.05);
}

.blogContent {
  padding: 1.5rem;
}

.blogContent h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #0056b3;
  line-height: 1.4;
}

.blogContent p {
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btnReadMore {
  display: inline-block;
  padding: 8px 15px;
  background-color: transparent;
  border: 2px solid #0056b3;
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
}

.btnReadMore:hover {
  background-color: #0056b3;
  color: white;
}

.blogFooter {
  text-align: center;
}

.btnAllPosts {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0056b3;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btnAllPosts:hover {
  background-color: #003d80;
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Media Queries para responsividade das novas seções */
@media (max-width: 992px) {
  .aboutContent {
      flex-direction: column;
      text-align: center;
  }
  
  .aboutImage {
      margin: 0 auto 2rem;
  }
  
  .testimonialsGrid {
      grid-template-columns: 1fr;
      max-width: 600px;
      margin: 0 auto;
  }
  
  .quickContactInfo {
      flex-direction: column;
      gap: 1rem;
  }
  
  .contactItem {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .advantagesGrid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .blogPosts {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin: 0 auto 2rem;
  }
  
  .clientsSlider {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .clientSlide {
      flex: 0 1 calc(33.333% - 2rem);
  }
  
  .quickContact {
      padding: 3rem 0;
  }
  
  .quickContactContent h2 {
      font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .advantagesGrid {
      grid-template-columns: 1fr;
  }
  
  .clientSlide {
      flex: 0 1 calc(50% - 2rem);
  }
  
  .testimonialAuthor {
      flex-direction: column;
      text-align: center;
      padding: 1rem;
  }
  
  .testimonialAvatar {
      margin-right: 0;
      margin-bottom: 1rem;
  }
  
  .quickContactContent h2 {
      font-size: 1.5rem;
  }
  
  .quickContactContent p {
      font-size: 1rem;
  }
  
  .contactItem {
      font-size: 1rem;
  }
}
