:root {
    --cor-primaria: #D8CFC7;
    --cor-secundaria: #78afab;
    --cor-background: #F8F8F8;
    --cor-texto-principal: #333;
    --cor-branco: #FFF;
    --cor-preto: #3DABA4;
    --cor-scroll-thumb: #3DABA4;
    --cor-scroll-track: #E3DBD8;
    --cor-borda-light: #eaeaea;
    --cor-borda-form: #ccc;
    --cor-shadow: rgba(0, 0, 0, 0.05);
    --cor-shadow-hover: rgba(0, 0, 0, 0.15);
    --cor-modal-bg: #f9f9f9;
    --cor-close-icon: #aaa;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #F8F8F8;
    background-color: var(--cor-background);
    color: var(--cor-texto-principal);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: var(--cor-preto); 
    color: var(--cor-branco);
    padding: 1px 0; 
    border-bottom: 1px solid var(--cor-borda-light);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo-header {
    max-width: 250px; 
    height: auto;
}

header nav {
    padding-top: 91px; 
}

nav ul {
    list-style: none;
    display: flex;
    gap: 10px; 
}

nav ul li a {
    color: var(--cor-branco); 
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 10px; 
    transition: color 0.3s, background-color 0.3s;
}

nav ul li a:hover {
    color: var(--cor-secundaria); 
}

nav ul li a.active {
    position: relative;
}

nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; 
    width: 100%;
    height: 3px; 
    background-color: var(--cor-branco); 
    border-radius: 2px;
}

@media (max-width: 768px) {
    header {
        padding: 0;
    }

    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    header .logo-header {
        max-width: 130px;
        height: auto;
    }

    header nav {
        padding-top: 65px; 
    }
}


::-webkit-scrollbar {
    width: 10px; 
}


::-webkit-scrollbar-track {
    background: var(--cor-background); 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--cor-preto); 
    border-radius: 5px;
    border: 2px solid var(--cor-background);
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 20s infinite;
}

.hero-slider .slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slider .slide:nth-child(2) {
    animation-delay: 5s;
}

.hero-slider .slide:nth-child(3) {
    animation-delay: 10s;
}

.hero-slider .slide:nth-child(4) {
  animation-delay: 15s;
}


@keyframes slideShow {
    0% {opacity: 0;}
    8% {opacity: 1;}
    30% {opacity: 1;}
    38% {opacity: 0;}
    100% {opacity: 0;}
}

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: var(--cor-branco);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    background-color: var(--cor-preto);
    color: var(--cor-branco);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background-color: var(--cor-primaria);
}

.logo-hero {
    max-width: 180px;
    margin-bottom: 20px;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: var(--cor-preto);
}

.about .subtitulo {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cor-texto-principal);
    margin-bottom: 30px;
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.about-cards .card {
    background: var(--cor-branco);
    box-shadow: 0 2px 8px var(--cor-shadow);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    flex: 1 1 250px;
}

.about-cards .card img {
    width: 60px;
    margin-bottom: 15px;
}

.about-cards .card h3 {
    color: var(--cor-preto);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.about-equipe {
    margin-top: 50px;
}

.about-equipe h3 {
    text-align: center;
    color: var(--cor-texto-principal);
    margin-bottom: 30px;
    font-size: 2rem;
}

.about-escolher {
    background: var(--cor-branco);
    border-radius: 10px;
    box-shadow: 0 2px 8px var(--cor-shadow);
    padding: 40px 20px;
    margin-bottom: 40px;
    text-align: center;
}

.about-escolher .descricao {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cor-texto-principal);
}

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--cor-preto);
  margin-bottom: 30px;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--cor-shadow);
  background: var(--cor-branco);
}

.contact-left,
.contact-right {
  flex: 1 1 300px;
  padding: 30px;
}

.contact-left {
  background-color: var(--cor-preto);
  color: var(--cor-branco);
}

.contact-left h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--cor-branco);
}

.benefits-list li::before {
  content: '✔';
  display: inline-block;
  margin-right: 10px;
  background-color: var(--cor-branco);
  color: var(--cor-preto);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.contact-footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  text-align: left;
}

.contact-footer-logo {
  max-width: 60px;
  height: auto;
  filter: brightness(0) invert(1);
}

.contact-footer-text {
  color: var(--cor-branco);
  font-size: 0.95rem;
  line-height: 1.3;
}

.contact-right {
  background-color: var(--cor-branco);
}

.contact-right form {
  display: flex;
  flex-direction: column;
}

.contact-right form div {
  margin-bottom: 15px;
}

.contact-right label {
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--cor-texto-principal);
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--cor-borda-form);
  border-radius: 4px;
  box-shadow: 0 2px 4px var(--cor-shadow);
}

.contact-right button {
  padding: 10px 20px;
  background-color: var(--cor-preto);
  color: var(--cor-branco);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.contact-right button:hover {
  background-color: var(--cor-secundaria);
  transform: scale(1.05);
}

.contact-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: var(--cor-texto-principal);
}

.contact-separator::before,
.contact-separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--cor-borda-form);
}

.contact-separator:not(:empty)::before {
  margin-right: 0.25em;
}

.contact-separator:not(:empty)::after {
  margin-left: 0.25em;
}


.whatsapp-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
  }
}

.map-section {
  padding: 30px 20px;
  background: var(--cor-branco);
  margin-bottom: 30px;
}

.mapa-titulo {
  text-align: center;
  font-size: 2.5rem;
  color: var(--cor-preto);
  margin-bottom: 30px;
}

.mapa-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.mapa-info {
  flex: 1 1 350px;
  max-width: 500px;
}

.mapa-subtitulo {
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--cor-texto-principal);
  margin-bottom: 15px;
}


.mapa-descricao {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--cor-texto-principal);
}

.mapa-detalhes {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.mapa-detalhes li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--cor-texto-principal);
}

.mapa-detalhes img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.mapa-detalhes a {
  color: var(--cor-preto);
  text-decoration: none;
}

.mapa-iframe {
  flex: 1 1 400px;
  min-width: 300px;
  box-shadow: 0 2px 8px var(--cor-shadow);
  border-radius: 10px;
  overflow: hidden;
}

.mapa-iframe iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

@media (max-width: 768px) {
  .mapa-flex {
    flex-direction: column;
    align-items: center;
  }

  .mapa-iframe {
    width: 95%;           
    max-width: 600px;     
    margin: 0 auto;       
  }

  .mapa-iframe iframe {
    width: 100%;          
    height: 400px;        
    border-radius: 10px;
  }
}


.whatsapp-button {
    text-align: center;
    margin-bottom: 30px; 
}

.btn-whatsapp {
    display: inline-block;
    padding: 10px 40px; 
    background-color: var(--cor-preto); 
    color: var(--cor-branco);
    text-decoration: none;
    border-radius: 10px; 
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px; 
    margin: 0 auto; 
    font-size: 1.2rem; 
}

.btn-whatsapp:hover {
    background-color: var(--cor-secundaria); 
    transform: scale(1.05);
}

.footer-main {
  background: var(--cor-preto);
  color: var(--cor-branco);
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--cor-borda-light);
  box-shadow: 0 -2px 4px var(--cor-shadow);
}

.logo-footer {
  max-width: 187.5px;
  height: auto;
  margin-bottom: 20px;
}

.footer-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}

.footer-credit {
  background: var(--cor-preto);
  color: var(--cor-branco);
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  border-top: 1px solid var(--cor-borda-light);
}

.footer-credit a {
  color: var(--cor-branco);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-credit a:hover {
  color: var(--cor-secundaria);
}

section {
    scroll-margin-top: 50px; 
}


.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--cor-preto);
    border-radius: 50%;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.floating-btn:hover {
    background-color: var(--cor-preto);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn {
    bottom: 20px;
    right: 20px;
}

.whatsapp-btn img {
    width: 32px;
    height: 32px;
}

.to-top-btn {
    bottom: 90px; 
    right: 20px;
    color: #fff;
    font-size: 24px;
    display: none; 
}

@media (max-width: 500px) {
    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn img {
        width: 28px;
        height: 28px;
    }

    .to-top-btn {
        font-size: 20px;
    }
}

.nosso-espaco {
    padding: 40px 20px;
    text-align: center;
    background: var(--cor-branco);
    border-radius: 10px;
    box-shadow: 0 2px 4px var(--cor-shadow);
    margin-bottom: 30px;
    max-width: 1200px; 
    margin-left: auto;
    margin-right: auto; 
    overflow: hidden;
}

.secao-titulo {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--cor-preto);
  margin-bottom: 10px;
  text-align: center;
  padding: 0 10px;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}

.secao-subtitulo {
  text-align: center;
  font-size: 1.2rem;
  color: var(--cor-texto-principal);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
  box-sizing: border-box;
  word-wrap: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}

.secao-titulo-especial {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--cor-preto);
  margin-bottom: 10px;
  text-align: center;
  padding: 0 10px;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}


@media (max-width: 768px) {
  .secao-titulo {
    font-size: 1.8rem;
    padding: 0 15px;
  }

  .secao-subtitulo {
    font-size: 1rem;
    padding: 0 15px;
  }

  .secao-titulo-especial {
    font-size: 1.4rem;
    padding: 0 25px;
  }
}


.swiper-container {
    width: 100%;
    max-width: 550px; 
    height: auto; 
    padding: 20px 0;
    box-sizing: border-box; 
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--cor-branco);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px; 
    overflow: hidden;
    box-shadow: 0 2px 4px var(--cor-shadow);
    max-width: 95%; 
    margin-left: auto;
    margin-right: auto; 
}

.swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transition: transform 0.3s;
}


.swiper-slide:hover img {
    transform: scale(1.05); 
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--cor-primaria) !important; 
}

.swiper-pagination-bullet {
    background: var(--cor-primaria) !important; 
}

.swiper-pagination {
    bottom: -50px !important;
}

.menu-toggle {
    display: none; 
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--cor-branco);
    cursor: pointer;
    z-index: 1100; 
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 999; 
    }

    .nav-menu {
        display: block;
        position: fixed;
        top: 68px; 
        right: -100%;
        background-color: var(--cor-preto);
        width: min(80vw, 300px);
        height: auto; 
        text-align: left; 
        transition: right 0.3s ease; 
        z-index: 1002; 
        border-radius: 5px; 
        overflow: hidden; 
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .nav-menu ul li {
        margin: 1px 0; 
        border-bottom: 1px solid var(--cor-branco); 
    }

    .nav-menu ul li:last-child {
        border-bottom: none; 
    }

    .nav-menu ul li a {
        padding: 8px 20px; 
        color: var(--cor-branco); 
        text-decoration: none; 
        display: block; 
    }

    .nav-menu.show {
        right: 0;
    }
}

@media only screen and (max-width: 768px) {
    
    .hero-content {
        flex-direction: column; 
        align-items: center; 
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem; 
        line-height: 1.5;
        margin-bottom: 15px; 
    }
    
}
