/* =========================================================
   Patricia Teles — Terapias Naturais
   Réplica fiel do sistema visual do template FemmYou
   (cores, tipografia e componentes reproduzidos a partir do
   demo oficial; fotos substituídas pelas fotos reais da Patrícia)
   ========================================================= */

:root {
  --blush: #FFE4E1;
  --blush-soft: #FFF5F3;
  --maroon: #800000;
  --maroon-dark: #5c0000;
  --ink: #222222;
  --gray: #666666;
  --footer-bg: #222222;
  --white: #ffffff;
  --line: #eee0dd;

  --font-serif: 'Petrona', Georgia, serif;
  --font-sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --radius-pill: 50px;
  --radius-md: 16px;
  --container: 1200px;
  --shadow-card: 0 25px 50px -20px rgba(34, 34, 34, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--gray);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-sans); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px;
}

/* Eyebrow label + accent rule (seen throughout the template) */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.accent-rule {
  width: 70px;
  height: 3px;
  background: var(--maroon);
  border: none;
  margin: 18px 0 22px;
}
.center .accent-rule { margin-left: auto; margin-right: auto; }

/* Buttons — pill shaped, as in FemmYou */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-blush { background: var(--blush); color: var(--maroon); }
.btn-blush:hover { background: var(--white); }
.btn-maroon { background: var(--maroon); color: var(--white); }
.btn-maroon:hover { background: var(--maroon-dark); }
.btn-outline { border-color: currentColor; color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-outline-maroon { border-color: var(--maroon); color: var(--maroon); background: transparent; }
.btn-outline-maroon:hover { background: var(--maroon); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  background: var(--white);
  position: relative;
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 30px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--maroon); }
.nav-cta { display: flex; align-items: center; gap: 18px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav-links.open { transform: translateX(0); }
  .menu-toggle { display: block; }
  .nav-cta .btn-blush.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .nav-wrap { padding: 16px 20px; gap: 10px; }
  .logo { font-size: 1.05rem; gap: 8px; }
  .logo img { height: 32px; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn-blush.btn-sm { display: none; }
}

/* ===================== HOME HERO (split) ===================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blush);
  min-height: 560px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 60px;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy p { max-width: 440px; font-size: 1.02rem; }
.hero-actions { margin-top: 10px; }
.hero-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(128,0,0,0.15), rgba(128,0,0,0.55));
}
.hero-badge {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  padding: 14px;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 56px 28px; order: 1; }
  .hero-photo { min-height: 300px; order: 2; }
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  background: var(--blush);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 25%);
  mask-image: linear-gradient(to right, transparent, #000 25%);
}
.breadcrumb {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--ink); }
.page-hero h1 { margin-bottom: 6px; }

@media (max-width: 640px) {
  .page-hero { padding: 46px 0; min-height: 0; }
  .page-hero-photo { display: none; }
}

/* ===================== FEATURE STRIP ===================== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-item {
  padding: 46px 40px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-left: 1px solid var(--line);
}
.feature-item:first-child { border-left: none; }
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--maroon);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-item h3 { margin-bottom: 6px; font-size: 1.1rem; }
.feature-item p { margin: 0; font-size: 0.9rem; }

@media (max-width: 900px) {
  .feature-strip { grid-template-columns: 1fr; }
  .feature-item { border-left: none; border-top: 1px solid var(--line); }
  .feature-item:first-child { border-top: none; }
}

/* ===================== SECTIONS ===================== */
section { padding: 90px 0; }
.section-blush { background: var(--blush-soft); }
.section-title { max-width: 640px; }
.section-title.center { margin: 0 auto; text-align: center; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

.photo-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.photo-frame.wide { aspect-ratio: 16/11; }

/* Feature list with round icons (Why Choose Us) */
.icon-feature-list { margin-top: 26px; }
.icon-feature {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px dashed var(--line);
}
.icon-feature:first-child { border-top: none; }
.icon-feature .feature-icon { width: 52px; height: 52px; }
.icon-feature h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ink); margin: 0 0 4px; }
.icon-feature p { margin: 0; font-size: 0.9rem; }

/* Overlapping photo pair with badge (Why Choose Us visual) */
.photo-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: end;
}
.photo-pair .photo-frame:first-child { aspect-ratio: 3/4; }
.photo-pair .photo-frame:last-child { aspect-ratio: 3/4.6; margin-top: 40px; }
.pair-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
}
.pair-badge strong { font-family: var(--font-serif); font-size: 2rem; color: var(--maroon); line-height: 1; }
.pair-badge span { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); margin-top: 4px; }

@media (max-width: 900px) {
  .photo-pair { grid-template-columns: 1fr 1fr; }
}

/* ===================== SERVICE CARDS (image + gradient overlay) ===================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(128,0,0,0.88) 0%, rgba(128,0,0,0.75) 28%, transparent 62%);
}
.service-card-body {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding-bottom: 26px;
}
.service-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
}
.service-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin: 0;
}

@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .service-grid { gap: 14px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-arrow { width: 42px; height: 42px; font-size: 1rem; margin-bottom: 10px; }
}

/* Service detail (accordion) used on servicos.html below the grid */
.accordion { border-top: 1px solid var(--line); margin-top: 20px; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
}
.accordion-trigger .chev { transition: transform 0.25s ease; color: var(--maroon); font-size: 1.2rem; }
.accordion-item.open .chev { transform: rotate(180deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-item.open .accordion-panel { max-height: 2400px; }
.accordion-panel-inner { padding: 0 4px 26px; }
.accordion-panel-inner h4 { font-family: var(--font-sans); font-weight: 700; color: var(--maroon); margin: 18px 0 8px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.accordion-panel-inner ul { padding-left: 20px; margin: 0 0 12px; }
.accordion-panel-inner li { margin-bottom: 6px; }

/* ===================== STATS BAR (overlapping) ===================== */
.stats-wrap { margin-top: -70px; position: relative; z-index: 5; }
.stats-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px;
}
.stat-box {
  background: var(--blush);
  border-radius: 12px;
  padding: 26px 16px;
  text-align: center;
}
.stat-box strong { font-family: var(--font-serif); font-size: 2.2rem; color: var(--maroon); display: block; }
.stat-box span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); }

@media (max-width: 900px) {
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .stats-wrap { margin-top: -40px; }
}

/* ===================== TESTIMONIALS ===================== */
.testi-section {
  background: linear-gradient(120deg, var(--blush) 0%, var(--blush-soft) 100%);
  border-radius: var(--radius-md);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 10px; position: relative; z-index: 2; }
.testi-card { position: relative; }
.testi-card p { font-size: 1rem; color: var(--ink); }
.testi-person { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.testi-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-serif); color: var(--maroon); font-size: 1.05rem; }
.testi-role { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }
.testi-quote-mark {
  position: absolute;
  right: 30px;
  bottom: 20px;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(128,0,0,0.12);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-section { padding: 40px 26px; }
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  text-align: center;
  position: relative;
}
.cta-banner .section-title { margin: 0 auto; }
.cta-banner .btn { margin-top: 10px; }

/* Dark full-bleed CTA with image (used on services page) */
.cta-dark {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 30px;
  text-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cta-dark::before { content:""; position:absolute; inset:0; background: rgba(34,34,34,0.55); }
.cta-dark .section-title, .cta-dark > .btn { position: relative; z-index: 2; }
.cta-dark h2, .cta-dark p { color: var(--white); }
.cta-dark .section-title { margin: 0 auto; }

/* ===================== BLOG CARDS ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.blog-card {
  border-bottom: 3px solid var(--maroon);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px -25px rgba(34,34,34,0.25);
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.blog-card-media { position: relative; aspect-ratio: 4/3; background-size: cover; background-position: center; }
.blog-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
}
.blog-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 18px; font-size: 0.78rem; color: var(--gray); margin-bottom: 12px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.9rem; }
.blog-card .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* Single post */
.post-body h2 { margin-top: 1.4em; font-size: 1.6rem; }
.post-body h4 { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; color: var(--maroon); margin: 1.6em 0 0.5em; }
.post-body ul { padding-left: 22px; }
.post-body li { margin-bottom: 8px; }
.post-figure { float: right; width: 260px; margin: 6px 0 20px 30px; border-radius: var(--radius-md); overflow: hidden; }
.post-figure img { width: 100%; }
.tag-chip {
  display: inline-block;
  border: 1px solid var(--line);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--maroon);
  margin: 4px 6px 4px 0;
}

/* ===================== PRODUCT / PRICING CARDS ===================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px -28px rgba(34,34,34,0.3);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.product-media { aspect-ratio: 1/1; background-size: cover; background-position: center; background-color: var(--blush-soft); }
.product-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  align-self: flex-start;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--maroon);
  background: var(--blush);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  font-weight: 700;
}
.product-body h3 { font-size: 1.02rem; margin-bottom: 6px; }
.product-price { margin-top: auto; font-family: var(--font-serif); font-size: 1.15rem; color: var(--maroon); padding: 12px 0; }

@media (max-width: 620px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-body { padding: 14px 14px 16px; }
  .product-tag { font-size: 0.6rem; padding: 3px 10px; margin-bottom: 8px; }
  .product-body h3 { font-size: 0.85rem; line-height: 1.35; }
  .product-price { font-size: 0.95rem; padding: 8px 0; }
  .product-body .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    padding: 8px 10px;
    font-size: 0.72rem;
    line-height: 1.3;
  }
}

.tag-filter-list { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.tag-filter { border: 1px solid var(--line); padding: 8px 20px; border-radius: var(--radius-pill); font-size: 0.85rem; color: var(--ink); }
.tag-filter.active, .tag-filter:hover { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-card {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
}
.contact-card:last-child { border-bottom: none; }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-card h4 { font-family: var(--font-serif); margin: 0 0 4px; font-size: 1.05rem; color: var(--ink); }
.contact-card p { margin: 0; font-size: 0.92rem; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; margin-bottom: 6px; color: var(--ink); font-weight: 600; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--blush-soft);
}
.form-field textarea { border-radius: 18px; min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.map-frame { border-radius: var(--radius-md); overflow: hidden; margin-top: 30px; }
.map-frame iframe { width: 100%; height: 280px; border: 0; display: block; }

@media (max-width: 900px) {
  .contact-grid, .form-row { grid-template-columns: 1fr; }
}

/* ===================== FOOTER ===================== */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.65); padding: 70px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: 16px; }
.footer-logo img { height: 38px; }
.footer-grid h4 { color: var(--white); font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 18px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.footer-social a:hover { background: rgba(255,255,255,0.12); }
.newsletter-form { display: flex; margin-top: 16px; border-radius: var(--radius-pill); overflow: hidden; background: rgba(255,255,255,0.08); padding: 5px; }
.newsletter-form input { flex: 1; border: none; background: transparent; padding: 10px 16px; color: var(--white); font-family: var(--font-sans); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button { border: none; background: var(--blush); color: var(--maroon); padding: 10px 20px; border-radius: var(--radius-pill); font-weight: 700; cursor: pointer; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { margin-left: 16px; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ===================== ENTRANCE ANIMATIONS ===================== */
/* Reproduz as animações de scroll do FemmYou (Elementor / Animate.css:
   fadeIn, fadeInUp, fadeInDown, fadeInLeft, fadeInRight, zoomIn) */
[data-aos] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
[data-aos="fade-in"] { transform: none; }
[data-aos="fade-up"] { transform: translateY(45px); }
[data-aos="fade-down"] { transform: translateY(-45px); }
[data-aos="fade-left"] { transform: translateX(-45px); }
[data-aos="fade-right"] { transform: translateX(45px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ===================== HOVER MOTION (cards, buttons, links) ===================== */
.btn { transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.service-card { transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.service-card:hover .service-arrow { transform: rotate(45deg); }
.service-arrow { transition: transform 0.35s ease; }

.blog-card, .product-card { transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease; }
.blog-card:hover, .product-card:hover { transform: translateY(-8px); box-shadow: 0 30px 55px -25px rgba(34,34,34,0.35); }
.blog-card-media, .product-media { transition: transform 0.6s ease; overflow: hidden; }
.blog-card:hover .blog-card-media, .product-card:hover .product-media { transform: scale(1.06); }

.stat-box { transition: transform 0.35s ease; }
.stat-box:hover { transform: translateY(-4px); }

.testi-card { transition: transform 0.35s ease; }
.icon-feature { transition: transform 0.3s ease; }
.icon-feature:hover { transform: translateX(6px); }

.nav-links a { position: relative; transition: color 0.25s ease; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--maroon);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.photo-frame { transition: transform 0.6s ease; }
.two-col:hover .photo-frame { transform: scale(1.02); }

/* ===================== PROTOCOLS ===================== */
.protocol-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)); gap: 30px; }
.protocol-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.protocol-card:hover { transform: translateY(-8px); box-shadow: 0 30px 55px -25px rgba(34,34,34,0.35); }
.protocol-media { aspect-ratio: 3/2; background-size: cover; background-position: center; background-color: var(--blush-soft); }
.protocol-body { padding: 22px 24px 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.protocol-body h3 { margin: 0; font-size: 1.1rem; }
.protocol-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

.phone-banner {
  display: flex; align-items: center; justify-content: center; gap: 26px;
  flex-wrap: wrap; text-align: center;
  background: var(--maroon); color: var(--white);
  border-radius: var(--radius-md); padding: 34px 40px;
}
.phone-banner h3 { color: var(--white); margin: 0 0 4px; }
.phone-banner p { color: var(--blush); margin: 0; }
.phone-banner .btn-blush { color: var(--maroon); }

/* Utility */
.center-text { text-align: center; }
.max-w-sm { max-width: 640px; margin: 0 auto; }
.mt-0 { margin-top: 0; }
