/* =============================================================
   style.css — Mariana Freitas Landing Page (Light Theme)
   ============================================================= */

@font-face {
  font-family: "Great Vibes";
  src: url("../fonts/GreatVibes-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.great-vibes {
  font-family: "Great Vibes", cursive !important;
  font-weight: 400;
  font-style: normal;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --rose: #d4608a;
  --rose-light: #e8a0be;
  --rose-pale: #f7e8f0;
  --rose-soft: #fdf0f5;
  --mauve: #c47a95;
  --cream: #fff8fb;
  --white: #ffffff;
  --text-dark: #2d1b26;
  --text-mid: #6d4a5c;
  --text-light: #9c7a8b;
  --border: #f0d8e6;
  --shadow: rgba(212, 96, 138, 0.12);
  --shadow-md: rgba(212, 96, 138, 0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 30px var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--shadow-md);
  background: linear-gradient(135deg, #c5578a, var(--rose));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--rose);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 50px;
  border: 2px solid var(--rose-light);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--rose-pale);
  border-color: var(--rose);
  transform: translateY(-2px);
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-pale);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(212, 96, 138, 0.08);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo-initial {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  color: white;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--shadow);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #fff0f7 0%, #fff8fb 50%, #f7edfa 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #f7c6dc 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #eec9e0 0%, transparent 70%);
  bottom: 100px;
  left: -100px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -30px) scale(1.05);
  }
}

.hero-container {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(212, 96, 138, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(212, 96, 138, 0.2);
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
}

.hero-title .highlight {
  color: var(--rose);
  position: relative;
  display: inline-block;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
  border-radius: 2px;
  opacity: 0.5;
}

.hero-title em {
  font-style: italic;
  color: var(--mauve);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 440px;
}

.hero-desc strong {
  color: var(--rose);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px var(--shadow);
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  width: 85%;
  height: 85%;
  background: radial-gradient(circle,
      rgba(212, 96, 138, 0.2) 0%,
      transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-image {
  width: 100%;
  max-width: 520px;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 30px 80px rgba(212, 96, 138, 0.25);
  position: relative;
  z-index: 1;
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px var(--shadow-md);
  z-index: 2;
  border-left: 3px solid var(--rose);
  animation: badgePop 0.6s ease 0.5s both;
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.badge-icon {
  font-size: 1.4rem;
}

.hero-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.hero-badge span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* ============================================================
   ESPECIALIDADES
   ============================================================ */
.especialidades {
  padding: 100px 0;
  background: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px var(--shadow);
  transition: var(--transition);
  cursor: default;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-md);
}

.card-featured {
  border-color: var(--rose-light);
  box-shadow: 0 8px 40px var(--shadow-md);
  transform: translateY(-6px);
}

.card-featured:hover {
  transform: translateY(-14px);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
}

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

.card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(212, 96, 138, 0.25) 0%,
      transparent 60%);
}

.card-body {
  padding: 28px 28px 32px;
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rose);
  transition: var(--transition);
  gap: 4px;
}

.card-link:hover {
  color: var(--mauve);
  letter-spacing: 0.02em;
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--cream) 0%, #fff0f7 100%);
  position: relative;
  overflow: hidden;
}

.sobre-bg-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(228, 168, 196, 0.25) 0%,
      transparent 70%);
  top: -100px;
  right: -80px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.sobre-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.sobre-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle,
      rgba(212, 96, 138, 0.15) 0%,
      transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
}

.sobre-image {
  width: 100%;
  max-width: 440px;
  border-radius: 30px;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 24px 60px rgba(212, 96, 138, 0.2);
  position: relative;
  z-index: 1;
}

.sobre-ig-card {
  position: absolute;
  bottom: 24px;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose);
  box-shadow: 0 6px 24px var(--shadow-md);
  z-index: 2;
  border: 1px solid var(--border);
}

.sobre-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sobre-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
}

.sobre-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sobre-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.sobre-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

.sobre-certs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}

.cert-icon {
  font-size: 1.5rem;
}

.cert-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}

.cert-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos {
  padding: 100px 0;
  background: var(--white);
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dep-card {
  background: var(--rose-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.dep-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px var(--shadow);
}

.dep-featured {
  background: linear-gradient(135deg, var(--rose-pale), white);
  border-color: var(--rose-light);
  box-shadow: 0 8px 32px var(--shadow-md);
}

.dep-stars {
  color: var(--rose);
  font-size: 1rem;
  letter-spacing: 2px;
}

.dep-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dep-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dep-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
}

.dep-author span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram-section {
  padding: 100px 0;
  background: var(--cream);
}

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 8px;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.ig-handle:hover {
  border-bottom-color: var(--rose);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 16px;
  margin-bottom: 40px;
}

.ig-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: block;
}

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

.ig-item:hover img {
  transform: scale(1.05);
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 96, 138, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.ig-item:hover .ig-overlay {
  opacity: 1;
}

.ig-tall {
  grid-row: span 2;
}

.ig-cta {
  text-align: center;
}

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid var(--rose);
  color: var(--rose);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-ig:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-md);
}

/* ============================================================
   CTA FAIXA
   ============================================================ */
.cta-faixa {
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  padding: 70px 0;
}

.cta-faixa-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-faixa-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-faixa-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.btn-cta-faixa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--rose);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 18px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-cta-faixa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo-initial {
  background: linear-gradient(135deg, var(--rose), var(--mauve));
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--rose-light);
}

.horarios li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: fabPulse 3s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes fabPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65);
  }
}

/* ============================================================
   GLOBAL — TIPOGRAFIA MOBILE (mín. 16px / line-height 1.5)
   ============================================================ */
p,
li,
span,
.card-body p,
.dep-card p,
.sobre-text p,
.footer-brand p {
  font-size: clamp(16px, 1.7vw, 1rem);
  line-height: 1.6;
}

/* Touch targets mínimos 48×48 px (Lei de Fitts) */
a,
button,
.accordion-trigger,
.card-link,
.btn-ig,
.btn-primary,
.btn-secondary,
.footer-social a {
  min-height: 48px;
  min-width: 48px;
}

.btn-nav,
.footer-social a {
  min-width: 44px;
}

/* exceção: ícones pequenos */

/* ============================================================
   CERTIFICATION STRIP (badge abaixo do hero)
   ============================================================ */
.cert-strip {
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  padding: 16px 24px;
  z-index: 10;
  position: relative;
}

.cert-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.cert-strip-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cert-strip-inner p {
  color: white;
  font-size: 0.92rem !important;
  line-height: 1.4 !important;
  margin: 0;
}

.cert-strip-inner strong {
  color: white;
}

.cert-strip-cta {
  background: white;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--transition);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.cert-strip-cta:hover {
  background: var(--rose-pale);
  transform: translateY(-1px);
}

/* ============================================================
   ACCORDION (serviços — ativo no mobile, card no desktop)
   ============================================================ */
.accordion-card {
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: block;
  padding: 0;
  font-family: inherit;
  min-height: auto;
  /* override touch target rule — imagem já é grande */
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  min-height: 64px;
  /* 64px > 48px touch target */
}

.accordion-header .card-icon {
  font-size: 1.5rem;
  margin: 0;
}

.accordion-header h3 {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.accordion-arrow {
  font-size: 1.6rem;
  color: var(--rose);
  transition: transform var(--transition);
  line-height: 1;
  display: inline-block;
}

.accordion-trigger[aria-expanded="true"] .accordion-arrow {
  transform: rotate(90deg);
}

.accordion-body {
  padding: 0 24px 24px;
  animation: accordionOpen 0.28s ease;
}

.accordion-body[hidden] {
  display: none;
}

.accordion-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

@keyframes accordionOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* No desktop: accordion se comporta como card normal (sem fechar) */
@media (min-width: 769px) {
  .accordion-trigger {
    pointer-events: none;
  }

  .accordion-arrow {
    display: none;
  }

  .accordion-body {
    display: block !important;
  }

  .accordion-body[hidden] {
    display: block !important;
  }

  .card-body {
    padding: 28px 28px 32px;
  }
}

/* ============================================================
   CARROSSEL HORIZONTAL — Instagram / Portfólio
   (scroll-snap com peeking do próximo card)
   ============================================================ */
.ig-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  padding: 0 24px 16px;
  /* Peeking: cada slide mostra ~88% da largura, revelando o início do próximo */
  scroll-padding-left: 24px;
  margin: 0 -24px 24px;
}

.ig-carousel::-webkit-scrollbar {
  display: none;
}

.ig-slide {
  position: relative;
  flex: 0 0 80%;
  /* 80% → peeping de ~10% de cada lado */
  max-width: 320px;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: transform var(--transition);
}

.ig-slide:last-child {
  margin-right: 24px;
}

/* espaço extra no fim */
.ig-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ig-slide:hover img {
  transform: scale(1.04);
}

.ig-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,
      rgba(45, 27, 38, 0.75) 0%,
      transparent 100%);
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 20px 16px 14px;
}

.ig-slide .ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 96, 138, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: 20px;
}

.ig-slide:hover .ig-overlay {
  opacity: 1;
}

/* Dica de swipe */
.swipe-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  transition: opacity 0.6s ease;
}

.swipe-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

/* No desktop: carrossel vira grid estático de 4 colunas */
@media (min-width: 769px) {
  .ig-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    padding: 0;
    margin: 0 0 40px;
    scroll-snap-type: none;
  }

  .ig-slide {
    flex: unset;
    max-width: unset;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    scroll-snap-align: none;
  }

  .ig-slide:last-child {
    margin-right: 0;
  }

  .swipe-hint {
    display: none;
  }
}

/* ============================================================
   STICKY BOTTOM CTA BAR (mobile-first, some > 768px)
   ============================================================ */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(212, 96, 138, 0.12);
  padding: 10px 16px;
  /* Slide-in animation */
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: 14px;
  height: 54px;
  /* > 48px mínimo */
  width: 100%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  min-height: 54px;
}

.sticky-cta-btn:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.sticky-cta-btn span {
  font-size: 1rem;
}

/* FAB só aparece no desktop; barra sticky some no desktop */
@media (min-width: 769px) {
  .sticky-cta-bar {
    display: none;
  }

  .whatsapp-fab {
    display: flex;
  }
}

@media (max-width: 768px) {
  .whatsapp-fab {
    display: none;
  }

  /* Compensar o espaço da barra fixa no rodapé */
  body {
    padding-bottom: 76px;
  }
}

/* ============================================================
   HERO — garante CTA visível no primeiro viewport mobile
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    /* svh = safe viewport height (respeita barra do browser) */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 20px 20px 40px;
  }

  .hero-content {
    align-items: center;
    gap: 18px;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image {
    width: 210px;
    height: 210px;
    max-width: 210px;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    animation: none;
    /* remove float no mobile p/ não sair do lugar */
  }

  .hero-badge {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

/* ============================================================
   RESPONSIVE — restante
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid .card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

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

  .sobre-image {
    max-width: 300px;
    margin: 0 auto;
  }

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

  .cards-grid .card:last-child {
    max-width: 100%;
  }

  .card-featured {
    transform: none;
  }

  /* Depoimentos: carrossel horizontal no mobile */
  .dep-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 4px 24px 16px;
    margin: 0 -24px;
    scroll-padding-left: 24px;
  }

  .dep-grid::-webkit-scrollbar {
    display: none;
  }

  .dep-card {
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: start;
  }

  .dep-card:last-child {
    margin-right: 24px;
  }

  .hero-title .highlight {
    color: var(--rose);
    position: relative;
    display: inline-block;
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .cta-faixa-inner {
    flex-direction: column;
    text-align: center;
  }

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

/* ============================================================
   BOTTOM SHEET MODAL — ESPECIALIDADES (mobile only)
   ============================================================ */

/* Overlay escuro por trás */
.svc-modal-overlay {
  display: none;
  /* hidden por padrão; JS remove hidden e seta display */
  position: fixed;
  inset: 0;
  background: rgba(45, 27, 38, 0.55);
  z-index: 2000;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: overlayFadeIn 0.25s ease;
}

@keyframes overlayFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Sheet em si */
.svc-modal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 90svh;
  overflow-y: auto;
  scrollbar-width: none;
}

.svc-modal::-webkit-scrollbar {
  display: none;
}

/* Quando a overlay estiver visível: anima o sheet */
.svc-modal-overlay.open .svc-modal {
  transform: translateY(0);
}

/* Drag handle */
.svc-modal-handle {
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin: 14px auto 0;
}

/* Botão fechar */
.svc-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--rose-pale);
  border-radius: 50%;
  color: var(--rose);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  min-height: unset;
  /* override touch-target rule */
  min-width: unset;
}

.svc-modal-close:hover {
  background: var(--rose-light);
  color: white;
}

/* Imagem do serviço */
.svc-modal-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  margin-top: 8px;
}

.svc-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-modal-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(45, 27, 38, 0.4) 0%,
      transparent 60%);
}

/* Corpo do modal */
.svc-modal-body {
  padding: 22px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-modal-icon {
  font-size: 2rem;
  line-height: 1;
}

.svc-modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.svc-modal-body p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

.svc-modal-btn {
  margin-top: 8px;
  justify-content: center;
  width: 100%;
}

/* No desktop: overlay nunca aparece */
@media (min-width: 769px) {
  .svc-modal-overlay {
    display: none !important;
  }
}

/* ============================================================
   FORM MODAL — PRÉ-AGENDAMENTO
   ============================================================ */

/* Overlay */
.form-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 27, 38, 0.6);
  z-index: 3000;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
  /* center modal on desktop */
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.form-modal-overlay.open {
  opacity: 1;
}

/* Modal container */
.form-modal {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 460px;
  max-height: 90svh;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 36px 28px 28px;
  box-shadow:
    0 24px 60px rgba(45, 27, 38, 0.25),
    0 0 0 1px rgba(212, 96, 138, 0.08);
  transform: translateY(30px) scale(0.96);
  transition:
    transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.3s ease;
  opacity: 0;
}

.form-modal::-webkit-scrollbar {
  display: none;
}

.form-modal-overlay.open .form-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close button */
.form-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--rose-pale);
  border-radius: 50%;
  color: var(--rose);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  min-height: unset;
  min-width: unset;
}

.form-modal-close:hover {
  background: var(--rose-light);
  color: white;
}

/* Header */
.form-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.form-modal-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.form-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.form-modal-subtitle {
  font-size: 0.92rem !important;
  color: var(--text-light) !important;
  margin: 0;
}

/* Form groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input[type="text"],
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--rose-soft);
  border: 2px solid transparent;
  border-radius: 14px;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a38d96' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--rose);
  background: white;
  box-shadow: 0 0 0 4px rgba(212, 96, 138, 0.1);
}

/* Validation error */
.form-error {
  display: none;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 6px;
  padding-left: 2px;
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: #e74c3c;
  background: #fff5f5;
}

.form-group.has-error .form-error {
  display: block;
  animation: shakeError 0.3s ease;
}

@keyframes shakeError {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}

/* Radio group */
.radio-group {
  display: flex;
  gap: 12px;
}

.radio-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--rose-soft);
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  min-height: 48px;
}

.radio-option:hover {
  border-color: var(--rose-light);
  background: var(--rose-pale);
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--text-light);
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}

.radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

.radio-option input:checked~.radio-custom {
  border-color: var(--rose);
}

.radio-option input:checked~.radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.radio-option:has(input:checked) {
  border-color: var(--rose);
  background: var(--rose-pale);
  color: var(--text-dark);
}

.form-group.has-error .radio-option {
  border-color: #e74c3c;
  background: #fff5f5;
}

/* Submit button */
.form-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  min-height: 54px;
  font-size: 1rem;
}

.form-btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spinRotate 0.6s linear infinite;
}

@keyframes spinRotate {
  to {
    transform: rotate(360deg);
  }
}

/* Privacy note */
.form-privacy {
  text-align: center;
  font-size: 0.78rem !important;
  color: var(--text-light) !important;
  margin-top: 16px !important;
  opacity: 0.8;
}

/* Success state */
.form-modal.success .form-modal-header h3 {
  color: #25d366;
}

/* Mobile: bottom sheet style */
@media (max-width: 768px) {
  .form-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .form-modal {
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 32px 20px 24px;
    max-height: 92svh;
    transform: translateY(100%);
  }

  .form-modal-overlay.open .form-modal {
    transform: translateY(0);
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .form-modal-header h3 {
    font-size: 1.35rem;
  }
}

/* ============================================================
   FAQ (GEO & CONVERSION)
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 16px var(--shadow);
  border-color: var(--rose-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-dark);
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  padding-right: 20px;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--rose);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}