:root {
  --purple: #600018;
  --gold: #c6a76a;
  --dark: #2a0717;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #f5f5f5;
  line-height: 1.6;
  background-color: var(--purple);
}

/* ===============================
   HEADER
================================ */

.main-header {
  background-color: var(--purple);
  padding: 18px 8%;
  border-bottom: 1px solid rgba(198,167,106,0.25);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 110px;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 48px;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.nav-menu li a:hover {
  opacity: 0.7;
}

/* ===============================
   BANNER
================================ */

.banner-brenda {
  width: 100%;
  height: 85vh;
  background-image: url("banner-brenda.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* ===============================
   SEÇÕES GERAIS
================================ */

section {
  padding: 100px 8%;
}

/* ===============================
   BARRA DE BENEFÍCIOS
================================ */

.features-bar {
  background-color: #ffffff;
  padding: 80px 8%;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  text-align: center;
}


.feature-item h3 {
  color: #2a0717;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.feature-item p {
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.7;
}
.feature-icon {
  width: 68px;          /* aumentou um pouco */
  height: 68px;
  margin-bottom: 26px;
  opacity: 0.9;
}



/* ===============================
   CTA
================================ */

.cta {
  text-align: center;
  background: linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.75)
  );
}

.hero-btn {
  display: inline-block;
  padding: 16px 42px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(0,0,0,0.45);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--purple);
}
/* ===============================
   SEÇÃO INSTITUCIONAL — VINHO PREMIUM
================================ */

.institutional {
  background-color: var(--purple);
  padding: 120px 8%;
}
.institutional {
  background-image: none !important;
}

.institutional-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
}

/* TEXTO */
.institutional-text h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 28px;
  letter-spacing: 6px;
  font-weight: 400;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.institutional-text p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 30px;
}

.institutional-location {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* LOGO — MARCA D’ÁGUA SOFISTICADA */
.institutional-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.institutional-logo img {
  max-width: 380px;               /* ligeiramente maior */
  width: 100%;
  opacity: 0.7;                   /* mais presença */
  filter: 
    drop-shadow(0 18px 40px rgba(0,0,0,0.35))
    contrast(1.05);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


/* ===============================
   SERVIÇOS
================================ */

.services {
  background-color: #ffffff;
  padding: 120px 8%;
}

.services-title {
  font-family: 'Playfair Display', serif;
  color: #2a0717;
  font-size: 28px;
  letter-spacing: 6px;
  font-weight: 400;
  margin-bottom: 80px;
  text-align: center;
  text-transform: uppercase;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #4b0f2a;
  padding: 60px 40px;
  text-align: center;
}


.service-card h3 {
  color: #4b0f2a;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.service-card p {
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.8;
}
/* Ícones dos serviços */
.service-icon {
  width: 90px;              /* tamanho maior e elegante */
  height: auto;
  margin: 0 auto 32px;      /* espaço entre ícone e título */
  display: block;
  opacity: 0.9;
}

/* ===============================
   FOOTER
================================ */

/* ===============================
   FOOTER — COR VINHO PADRÃO
================================ */

.footer {
  background-color: var(--purple);
  padding: 60px 8% 30px;
  border-top: 1px solid rgba(198,167,106,0.25);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 18px;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(198,167,106,0.25);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-content,
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}


/* ===============================
   RESPONSIVO
================================ */

@media (max-width: 992px) {
  .features-container,
  .services-grid,
  .institutional-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .institutional-logo {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .footer-content,
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  body {
    background-image: none !important;
  }
}

/* ===============================
   GALERIA DE EXPERIÊNCIAS
================================ */

.experiences-gallery {
  background-color: var(--purple);
  padding: 120px 8%;
}

.experiences-title {
  font-family: 'Playfair Display', serif;
  color: var(--branco);
  font-size: 26px;
  letter-spacing: 6px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-align: center;
}

.experiences-gallery {
  background-color: var(--purple);
  padding: 80px 8%;
  overflow: hidden;
}

.experiences-title {
  font-family: 'Playfair Display', serif;
  color: var(--branco);
  font-size: 26px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: left;
}

/* Container do scroll */
.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  max-width: 100%;
}

/* Card vertical */
.gallery-item {
  flex: 0 0 220px;   /* largura fixa */
  height: 340px;     /* altura fixa */
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

/* Imagem nunca estoura */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Scroll elegante */
.gallery-scroll::-webkit-scrollbar {
  height: 5px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-item {
    flex: 0 0 180px;
    height: 280px;
  }
}
/* ===============================
   FAIXA — NOSSOS RESULTADOS
================================ */

.results-bar {
  background-color: var(--purple);
  padding: 120px 8%;
}

.results-title {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-size: 26px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 80px;
}

/* Grid */
.results-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px;
  align-items: center;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}


/* ÍCONE — CONTROLE TOTAL */
.result-item img {
  width: 42px;       /* tamanho correto */
  height: 42px;
  min-width: 42px;
  object-fit: contain;
  opacity: 0.85;
}

/* Texto */
.result-item h3 {
  font-size: 34px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
}

.result-item p {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Responsivo */
@media (max-width: 992px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
  /* ===============================
   DEPOIMENTOS — NOSSOS CLIENTES
================================ */

.testimonials {
  background-color: #ffffff;
  padding: 120px 8%;
}

.testimonials-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  letter-spacing: 6px;
  color: #2a0717;
  margin-bottom: 80px;
  text-transform: uppercase;
}

/* Slider */
.testimonials-slider {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

/* Card */
.testimonial-card {
  flex: 0 0 360px;
  background: #f5f5f5;
  padding: 40px 36px;
  border-radius: 14px;
  scroll-snap-align: start;
}

/* Estrelas */
.stars {
  color: #f2b705;
  font-size: 18px;
  margin-bottom: 20px;
}

/* Texto */
.testimonial-card p {
  color: #2a0717;
  font-size: 15px;
  line-height: 1.8;
}

/* Scroll clean */
.testimonials-slider::-webkit-scrollbar {
  height: 6px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
  background: #c6a76a;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 300px;
  }
}
 
.section-divider {
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin: 0 auto; /* zero espaço vertical */
  background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent
  );
  opacity: 0.9;
}

/* ===============================
   AJUSTE FINO — EXPERIÊNCIAS
================================ */

.experiences-gallery {
  padding-top: 8px;
}

.experiences-title {
  margin-top: 4px;   /* distância mínima elegante */
  margin-bottom: 24px;
}
.cta-whatsapp {
  background-color: #f2f2f2; /* cinza claro elegante */
  padding: 120px 8%;
  text-align: center;
}

.cta-whatsapp h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--purple);
  margin-bottom: 20px;
}


.cta-whatsapp p {
  font-size: 16px;
  color: var(--purple);
  margin-bottom: 40px;
}


/* Botão WhatsApp */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #25d366;
  transition: 0.3s ease;
}

.whatsapp-btn img {
  width: 32px;
  height: 32px;
}

/* Hover sofisticado */
.whatsapp-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: 0.3s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* Hover elegante */
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

/* ===== NOSSO BLOG ===== */
.blog-section {
  padding: 100px 8%;
  background-color: #ffffff;
  position: relative;
}



.blog-title {
  text-align: center;
  font-size: 14px;
  letter-spacing: 6px;
  color: #b6a888;
  margin-bottom: 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.blog-item {
  text-align: center;
}

.blog-item h3 {
  font-size: 18px;
  font-weight: 400;
  color: #8c8c8c;
  margin-bottom: 12px;
}

.blog-item a {
  font-size: 13px;
  color: #b6a888;
  text-decoration: none;
}

.blog-item a:hover {
  text-decoration: underline;
}

.blog-button {
  margin-top: 30px;
}

.btn-blog {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #b6a888;
  color: #b6a888;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-blog:hover {
  background-color: #b6a888;
  color: #ffffff;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

  /* ===============================
   BANNER — MOBILE
================================ */

/* ===============================
   BANNER — MOBILE (ALTURA MAIOR)
================================ */

@media (max-width: 768px) {
  .banner-brenda {
    height: 78vh;                 /* bem mais alto e elegante */
    background-position: center;  /* centraliza melhor o rosto */
  }
}

@media (max-width: 480px) {
  .banner-brenda {
    height: 82vh;                 /* ocupa quase toda a tela */
  }
}
 
/* ===== FIX DEFINITIVO — NOSSOS RESULTADOS ===== */

.results-bar {
  display: block;
}

.results-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 80px !important;
  max-width: 1200px;
  margin: 0 auto;
}

.result-item {
  display: flex !important;
  align-items: center;
  gap: 24px;
}

/* Responsivo correto */
@media (max-width: 992px) {
  .results-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.result-text {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .banner-brenda {
    background-image:
      linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
      url("banner-brenda-mobile.png");
    background-size: cover;
    background-position: center;
  }
}
/* ===============================
   MENU HAMBÚRGUER — MOBILE
================================ */

/* Botão escondido no desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background-color: var(--gold);
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {

  .nav-menu {
    position: fixed;
    top: 100%; /* começa logo abaixo do header */
    left: 0;
    width: 100%;
    background-color: var(--purple);
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 40px 0;
    display: none;
    z-index: 9998;
  }

  .nav-menu.active {
    display: flex;
  }
}

/* ===============================
   ANIMAÇÃO — FEATURES / BENEFÍCIOS
================================ */

.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up.active {
  opacity: 1;
  transform: translateY(0);
}
/* ===============================
   ANIMAÇÃO — TÍTULOS INSTITUCIONAIS
================================ */

.animate-title {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-title.active {
  opacity: 1;
  transform: translateY(0);
}
/* =========================
   BLOG
========================= */
.blog-section {
  padding: 120px 20px;
  text-align: center;
}

.blog-title {
  letter-spacing: 4px;
  margin-bottom: 80px;
  color: #b89b6a;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.blog-link {
  font-size: 14px;
  color: #b89b6a;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

/* BOTÃO */
.btn-outline {
  padding: 14px 40px;
  border: 1px solid #b89b6a;
  color: #b89b6a;
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #b89b6a;
  color: #fff;
}

/* =========================
   ANIMAÇÕES
========================= */

/* TÍTULOS */
/* =========================
   ANIMAÇÃO — TÍTULOS (CORRIGIDA)
========================= */
.animate-title {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.animate-title.active {
  opacity: 1;
  transform: translateY(0);
}
/* =========================
   CORES DOS TÍTULOS — BLOG
========================= */
.blog-card h3,
.blog-title {
  color: #6a1b32; /* vinho elegante */
}


/* SUBIDA SUAVE */
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.animate-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  .results-title {
    text-align: center;
    margin-bottom: 60px;
  }

  .results-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .result-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: normal;
    gap: 16px;
  }

  .result-item img {
    width: 48px;
    height: 48px;
  }

  .result-item h3 {
    font-size: 30px;
  }

  .result-item p {
    font-size: 12px;
    letter-spacing: 2px;
  }
}
@media (max-width: 768px) {

  .results-bar {
    display: block !important;
    padding: 80px 6%;
  }

  .results-title {
    text-align: center;
    margin-bottom: 48px;
  }

  .results-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .result-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    white-space: normal;
  }

  .result-item img {
    width: 44px;
    height: 44px;
    opacity: 0.9;
  }

  .result-item h3 {
    font-size: 28px;
    line-height: 1.2;
  }

  .result-item p {
    font-size: 12px;
    letter-spacing: 2px;
  }
  /* ===============================
   MENU HAMBÚRGUER — FIX FINAL
================================ */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background-color: var(--gold);
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
    z-index: 9999;
  }

  .nav-menu {
    position: fixed;
    top: 0;                 /* ABRE EM CIMA DO BANNER */
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--purple);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    display: none;
    z-index: 9998;
  }

  .nav-menu.active {
    display: flex;
  }

}
/* ===============================
   BLOG — FIX DEFINITIVO MOBILE
================================ */

@media (max-width: 768px) {

  .blog-section {
    padding: 80px 6%;
  }

  .blog-title {
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 48px;
    text-align: center;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 100%;
  }

  .blog-card {
    max-width: 100%;
  }

  .blog-card h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .blog-link {
    font-size: 13px;
  }

  .blog-button {
    margin-top: 40px;
  }

}
}
/* ===============================
   BOTÃO WHATSAPP ESTILO PREMIUM (CARDS)
================================ */

.btn-whats-card {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 34px;
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whats-card img {
  width: 18px;
  height: 18px;
}

.btn-whats-card:hover {
  background-color: #000;
  color: #fff;
}

.btn-whats-card:hover img {
  filter: invert(1);
}
/* ===============================
   BOTÃO WHATSAPP PREMIUM — CARDS MASSAGEM
================================ */

.btn-whats-card {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 34px;
  border: 1px solid #000;
  background-color: #ffffff;
  color: #000000;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whats-card img {
  width: 24px;
  height: 24px;
}

.btn-whats-card:hover {
  background-color: #000;
  color: #fff;
}

.btn-whats-card:hover img {
  filter: invert(1);
}
.testimonial-author {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4b0f2a;
}
.btn-whats-contact {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 46px;
  border: 1px solid #000;
  background-color: #ffffff;
  color: #000000;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whats-contact img {
  width: 20px;
  height: 20px;
}

.btn-whats-contact:hover {
  background-color: #000;
  color: #fff;
}

.btn-whats-contact:hover img {
  filter: invert(1);
}
/* Animação dos cards de massagem */
.service-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Quando ativo */
.service-card.active {
  opacity: 1;
  transform: translateY(0);
}
/* Animação suave nas imagens da galeria */
.gallery-item img {
  transition: transform 0.8s ease;
  will-change: transform;
}

/* Hover elegante */
.gallery-item:hover img {
  transform: scale(1.05) translateY(-4px);
}
.banner-brenda {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Texto sobre o banner */
.banner-overlay-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #ffffff;
  text-align: center;
  text-transform: none; /* garante minúsculo */
  z-index: 2;

  /* animação inicial */
  opacity: 0;
  transform: translateY(30px);
  animation: bannerTextEnter 1.4s ease forwards;
  animation-delay: 0.4s;
}
@keyframes bannerTextEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .banner-overlay-text {
    font-size: 16px;
    letter-spacing: 2px;
    padding: 0 16px;
  }
}
.banner-overlay-text {
  color: #ffffff;
  text-shadow:
    0 4px 12px rgba(0,0,0,0.45),
    0 0 18px rgba(255,255,255,0.15);
}
.feature-item h3,
.feature-item p {
  color: var(--purple);
}
/* ===============================
   MASSAGENS — TUDO EM VINHO
================================ */

/* Card */
.service-card {
  border: 1px solid var(--purple);
}

/* Ícones */
.service-icon {
  filter: brightness(0) saturate(100%) invert(16%)
          sepia(35%) saturate(2600%)
          hue-rotate(315deg) brightness(90%) contrast(95%);
}

/* Título */
.service-card h3 {
  color: var(--purple);
}

/* Texto */
.service-card p {
  color: rgba(75, 15, 42, 0.75);
}

/* Botão */
.btn-whats-card {
  border: 1px solid var(--purple);
  color: var(--purple);
}

/* Hover do botão */
.btn-whats-card:hover {
  background-color: var(--purple);
  color: #ffffff;
}

/* Ícone do WhatsApp no hover */
.btn-whats-card:hover img {
  filter: invert(1);
}
.resultados-lista {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap; /* quebra no mobile */
}

.resultado-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* =========================
   BLOG — CARDS ELEGANTES
========================= */

.blog-card {
  border: 1px solid rgba(106, 27, 50, 0.25); /* vinho suave */
  padding: 60px 30px;
  min-height: 220px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #ffffff;
  transition: all 0.4s ease;
  position: relative;
}

/* Linha decorativa sutil */
.blog-card::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #b89b6a;
  margin-bottom: 26px;
  opacity: 0.8;
}

/* Título */
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  color: #6a1b32;
}

/* Link */
.blog-link {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b89b6a;
}

/* Hover sofisticado */
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #b89b6a;
}
@media (max-width: 768px) {
  .blog-card {
    padding: 50px 24px;
  }
}
/* ===============================
   AJUSTE GLOBAL — VINHO #600018
================================ */

body {
  background-color: var(--purple);
}

/* Títulos vinho */
h1, h2, h3,
.services-title,
.testimonials-title,
.blog-title,
.blog-card h3 {
  color: var(--purple);
}

/* Bordas */
.service-card,
.blog-card,
.btn-whats-card,
.btn-whats-contact {
  border-color: var(--purple);
}

/* Botões */
.btn-whats-card,
.btn-whats-contact {
  color: var(--purple);
}

.btn-whats-card:hover,
.btn-whats-contact:hover {
  background-color: var(--purple);
  color: #ffffff;
}

/* Modal blog */
.blog-modal-close {
  color: var(--purple);
}

.blog-modal-content h3 {
  color: var(--purple);
}

/* Ícones filtrados */
/* Ícones das massagens — vermelho vinho exato */
/* Ícones das massagens — vermelho vinho #600018 */
.service-icon {
  filter: brightness(0) saturate(100%)
          invert(10%)
          sepia(85%)
          saturate(5200%)
          hue-rotate(345deg)
          brightness(78%)
          contrast(102%);
}











