/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CORES DO SITE */
:root {
  --white: #faf8f5;
  --brown: #2c1810;
  --rose-light: #f2dfda;
  --rose: #c4908a;
  --text-light: #9b7b73;
}

/* CONFIGURAÇÃO GERAL */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
  background-color: var(--white);
  color: var(--brown);
}

/* NAVBAR */
.navbar {
  width: 100%;
  height: 86px;
  padding: 0 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background-color: var(--white);
  border-bottom: 1px solid #eee1dc;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* LOGO */
.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--brown);
  line-height: 1;
}

.logo p {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 5px;
}

/* LINKS DO MENU */
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 16px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--brown);
}

/* BOTÃO DA NAVBAR */
.nav-btn {
  background-color: var(--brown);
  color: white;
  text-decoration: none;

  padding: 16px 28px;
  border-radius: 40px;

  font-weight: 700;
  transition: 0.3s;
}

.nav-btn:hover {
  background-color: var(--rose);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 150px 70px 80px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* TEXTO PEQUENO ACIMA DO TÍTULO */
.section-tag {
  display: inline-block;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 13px;
  margin-bottom: 25px;
}

/* TÍTULO PRINCIPAL */
.hero-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--brown);
  max-width: 780px;
}

.hero-content h2 span {
  color: var(--rose);
}

/* TEXTO DO HERO */
.hero-content p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 620px;
  margin: 30px 0;
}

/* BOTÕES DO HERO */
.hero-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.btn {
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary {
  background-color: var(--brown);
  color: white;
}

.btn-primary:hover {
  background-color: var(--rose);
}

.btn-secondary {
  border: 1px solid #e3d3ce;
  color: var(--brown);
}

.btn-secondary:hover {
  background-color: var(--rose-light);
}

/* IMAGEM DO HERO */
.hero-image {
  background-color: var(--rose-light);
  padding: 20px;
  border-radius: 40px;
}

.hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

/* SEÇÃO DE SERVIÇOS */
.services {
  padding: 100px 70px;
  background-color: #fff;
}

/* CABEÇALHO DAS SEÇÕES */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header span {
  display: inline-block;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  color: var(--brown);
  margin-bottom: 18px;
}

.section-header p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
}

/* CONTAINER DOS CARDS */
.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD DE SERVIÇO */
.service-card {
  background-color: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(44, 24, 16, 0.08);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* IMAGEM DO CARD */
.service-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* CONTEÚDO DO CARD */
.service-content {
  padding: 30px;
}

.service-content span {
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
}

.service-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--brown);
  margin: 15px 0;
}

.service-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 25px;
}

.service-content a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 4px;
}
.service-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.service-gallery-btn {
  border: none;
  background-color: var(--brown);
  color: white;

  padding: 12px 20px;
  border-radius: 40px;

  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;
  transition: 0.3s;
}

.service-gallery-btn:hover {
  background-color: var(--rose);
  transform: translateY(-3px);
}

.service-actions a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 4px;
}
.service-card {
  position: relative;
}

/* ÍCONE DO SERVIÇO */
.service-icon {
  position: absolute;
  top: 18px;
  left: 18px;

  width: 52px;
  height: 52px;
  border-radius: 50%;

  background-color: rgba(250, 248, 245, 0.95);
  color: var(--rose);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(44, 24, 16, 0.15);
  z-index: 2;
}

/* SOBRE */
.about {
  padding: 100px 70px;
  background-color: var(--white);

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGEM DA SEÇÃO SOBRE */
.about-image {
  background-color: var(--rose-light);
  padding: 18px;
  border-radius: 35px;
}

.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

/* CONTEÚDO DO SOBRE */
.about-content span {
  display: inline-block;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  margin-bottom: 18px;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  color: var(--brown);
  margin-bottom: 28px;
}

.about-content p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* FRASE DESTACADA */
.quote {
  margin-top: 35px;
  padding: 30px;
  background-color: #fff;
  border-left: 5px solid var(--rose);
  border-radius: 18px;

  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--brown);
  box-shadow: 0 15px 40px rgba(44, 24, 16, 0.06);
}

/* CIDADES ATENDIDAS */
.cities {
  padding: 100px 70px;
  background-color: #fff;
}

.city-list {
  max-width: 1000px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.city-list p {
  background-color: var(--rose-light);
  color: var(--brown);

  padding: 14px 24px;
  border-radius: 40px;

  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(44, 24, 16, 0.06);
}








/* DEPOIMENTOS */
.testimonials {
  padding: 100px 70px;
  background-color: #fff;
}

/* CONTAINER DOS DEPOIMENTOS */
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD DO DEPOIMENTO */
.testimonial-card {
  background-color: var(--white);
  padding: 35px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(44, 24, 16, 0.08);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

/* ESTRELAS */
.stars {
  color: var(--rose);
  font-size: 20px;
  margin-bottom: 20px;
}

/* TEXTO DO DEPOIMENTO */
.testimonial-card p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* CLIENTE */
.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client span {
  width: 45px;
  height: 45px;
  border-radius: 50%;

  background-color: var(--rose-light);
  color: var(--brown);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
}

.client strong {
  color: var(--brown);
  font-size: 16px;
}
/* CONTATO */
.contact {
  padding: 100px 70px;
  background-color: var(--white);
}

/* CONTAINER DO CONTATO */
.contact-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* CAIXAS DE INFORMAÇÃO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-box {
  background-color: #fff;
  padding: 28px;
  border-radius: 24px;
  text-decoration: none;
  color: var(--brown);
  box-shadow: 0 15px 40px rgba(44, 24, 16, 0.08);
  transition: 0.3s;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-box strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-box p {
  color: var(--text-light);
  line-height: 1.6;
}

/* FORMULÁRIO */
.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(44, 24, 16, 0.08);

  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--rose);
  border-radius: 14px;
  margin-bottom: 20px;

  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: var(--brown);
  outline: none;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #d6c0ba;
  opacity: 1;
}

.contact-form button {
  border: none;
  background-color: var(--brown);
  color: white;

  padding: 18px 30px;
  border-radius: 40px;

  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: var(--rose);
}

/* BOTÃO DO MENU MOBILE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brown);
  font-size: 34px;
  cursor: pointer;
}
/* FOOTER */
.footer {
  background-color: var(--brown);
  color: white;
  padding: 70px 70px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer h2,
.footer h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 18px;
}

.footer h2 {
  font-size: 32px;
}

.footer h3 {
  font-size: 24px;
}

.footer p {
  color: #d8c7c1;
  line-height: 1.7;
}

.footer a {
  display: block;
  color: #d8c7c1;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer a:hover {
  color: white;
}

.copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  font-size: 14px;
}

/* NAVBAR COM EFEITO AO ROLAR */
.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.12);
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
}
/* ANIMAÇÃO SUAVE AO APARECER NA TELA */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* EFEITO GERAL NOS BOTÕES */
.btn,
.nav-btn,
.contact-form button {
  position: relative;
  overflow: hidden;
}

.btn:hover,
.nav-btn:hover,
.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(44, 24, 16, 0.18);
}

/* EFEITO MAIS SUAVE NAS IMAGENS */
.hero-image img,
.about-image img,
.service-card img,
.gallery img {
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.service-card:hover img,
.gallery img:hover {
  filter: brightness(1.03);
}

/* BOTÃO FLUTUANTE DO WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;

  background-color: #25d366;
  color: white;

  padding: 16px 22px;
  border-radius: 50px;

  text-decoration: none;
  font-weight: 700;
  font-size: 15px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 2000;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
}

/* CORREÇÃO DO HOVER QUANDO O ELEMENTO TAMBÉM TEM REVEAL */
.service-card.reveal.show:hover,
.testimonial-card.reveal.show:hover {
  transform: translateY(-8px) scale(1);
}

.gallery img.reveal.show:hover {
  transform: scale(1.03);
}



/* FAQ */
.faq {
  padding: 100px 70px;
  background-color: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: 22px;
  margin-bottom: 18px;
  box-shadow: 0 15px 40px rgba(44, 24, 16, 0.07);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: none;
  padding: 24px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  font-family: "Playfair Display", serif;
  font-size: 23px;
  color: var(--brown);
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-family: "Lato", sans-serif;
  font-size: 28px;
  color: var(--rose);
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* CUIDADOS */
.care {
  padding: 100px 70px;
  background-color: var(--white);
}

.care-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.care-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(44, 24, 16, 0.08);
}

.care-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--brown);
  margin-bottom: 24px;
}

.care-card ul {
  list-style: none;
}

.care-card li {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}

.care-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose);
  font-weight: 700;
}
.care-botox {
  font-size: 12px;
  color: var(--text-light);
}

/* MODAL DOS SERVIÇOS */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-color: rgba(44, 24, 16, 0.85);

  display: none;
  align-items: center;
  justify-content: center;

  padding: 25px;
  z-index: 3000;
}

.service-modal.active {
  display: flex;
}

.service-modal-content {
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;

  background-color: var(--white);
  border-radius: 30px;
  padding: 45px;

  position: relative;
}

.service-modal-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--brown);
  margin-bottom: 30px;
  text-align: center;
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background-color: var(--brown);
  color: white;

  font-size: 28px;
  cursor: pointer;
}

.service-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-modal-gallery img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

/* RESPONSIVO PARA TABLET E CELULAR */
@media (max-width: 900px) {
  .navbar {
    height: 80px;
    padding: 0 25px;
  }

  .logo h1 {
    font-size: 24px;
  }

  .logo p {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;
    background-color: var(--white);

    display: none;
    flex-direction: column;
    align-items: center;
    gap: 22px;

    padding: 30px 0;
    border-bottom: 1px solid #eee1dc;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.12);

    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 17px;
  }

  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 125px 25px 70px;
    gap: 40px;
  }

  .hero-content h2 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-image img {
    height: 480px;
  }

  .services,
  .about,
  .cities,
  .testimonials,
  .faq,
  .care,
  .contact {
    padding: 80px 25px;
  }

  .services-container,
  .testimonial-container,
  .contact-container,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 480px;
  }


  .section-header {
    margin-bottom: 45px;
  }

  .section-header h2,
  .about-content h2 {
    font-size: 42px;
  }

  .footer {
    padding: 60px 25px 25px;
  }


  .care-container {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVO PARA CELULAR PEQUENO */
@media (max-width: 550px) {
  .navbar {
    height: 76px;
    padding: 0 18px;
  }

  .nav-links {
    top: 76px;
  }

  .logo h1 {
    font-size: 21px;
  }

  .logo p {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .menu-toggle {
    font-size: 30px;
  }

  .hero {
    padding: 115px 18px 60px;
  }

  .section-tag {
    letter-spacing: 3px;
    font-size: 11px;
    margin-bottom: 18px;
  }

  .hero-content h2 {
    font-size: 37px;
    line-height: 1.18;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-buttons {
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: none;
  }

  .hero-image {
    padding: 12px;
    border-radius: 28px;
  }

  .hero-image img {
    height: 360px;
    border-radius: 22px;
  }

  .services,
  .about,
  .cities,
  .testimonials,
  .faq,
  .care,
  .contact {
    padding: 65px 18px;
  }

  .section-header h2,
  .about-content h2 {
    font-size: 34px;
  }

  .section-header p,
  .about-content p {
    font-size: 16px;
  }

  .service-card img {
    height: 260px;
  }

  .service-content {
    padding: 24px;
  }

  .service-content h3 {
    font-size: 24px;
  }

  .about-image {
    padding: 12px;
    border-radius: 28px;
  }

  .about-image img {
    height: 360px;
    border-radius: 22px;
  }

  .quote {
    font-size: 22px;
    padding: 24px;
  }

  .city-list {
    gap: 10px;
  }

  .city-list p {
    font-size: 14px;
    padding: 12px 18px;
  }


  .testimonial-card {
    padding: 28px;
  }

  .contact-form {
    padding: 26px;
  }

  .contact-box {
    padding: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer h2 {
    font-size: 28px;
  }

  .footer h3 {
    font-size: 22px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    padding: 14px 18px;
    font-size: 14px;
  }

  .faq-question {
    font-size: 19px;
    padding: 22px;
  }

  .faq-answer p {
    font-size: 15px;
    padding: 0 22px 22px;
  }

  .care-card {
    padding: 28px;
  }

  .care-card h3 {
    font-size: 26px;
  }

  .care-card li {
    font-size: 15px;
  }

  .service-modal {
    padding: 15px;
  }

  .service-modal-content {
    padding: 35px 20px 25px;
    border-radius: 24px;
  }

  .service-modal-title {
    font-size: 30px;
  }

  .service-modal-gallery {
    grid-template-columns: 1fr;
  }

  .service-modal-gallery img {
    height: 300px;
  }
}

