/* ══════════════════════════════════════════════
   Donna Cosméticos — Light Editorial Theme
   Fonts: Cormorant Garamond + Figtree
   ══════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────── */
:root {
  --bg:           #FAFAF8;
  --bg-2:         #F5EEF2;
  --bg-dark:      #100A0E;
  --surface:      #FFFFFF;
  --surface-2:    #FFF5F8;
  --border:       rgba(26, 15, 20, 0.08);
  --border-mid:   rgba(26, 15, 20, 0.13);

  /* Brand colours extracted from logo SVG */
  --accent:       #FF5995;   /* brand pink  */
  --accent-coral: #FF7077;   /* brand coral */
  --accent-green: #55C27E;   /* brand green */
  --accent-blue:  #53A7DA;   /* brand blue  */
  --accent-grad:  linear-gradient(45deg, #FF5995 0%, #FF7077 100%);
  --accent-glow:  rgba(255, 89, 149, 0.22);
  --accent-soft:  rgba(255, 89, 149, 0.07);
  --accent-hover: #e84d87;
  --gold:         #B8904A;

  --text:         #170D13;
  --text-muted:   rgba(23, 13, 19, 0.48);
  --text-light:   #FAFAF8;
  --text-light-m: rgba(250,250,248,0.55);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Figtree', system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-circ:  cubic-bezier(0.85, 0, 0.15, 1);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}


/* ── Reset & Base ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) { body { cursor: auto; } }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: inherit; }
@media (pointer: coarse) { button { cursor: pointer; } }


/* ── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--accent-grad); border-radius: 99px; }
::selection { background: #FF5995; color: #fff; }


/* ── Custom Cursor ─────────────────────────── */
#cursor-dot,
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
#cursor-dot {
  width: 6px; height: 6px;
  background: #FF5995;
  border-radius: 50%;
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out);
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255, 89, 149,0.4);
  border-radius: 50%;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.25s;
}
body:has(a:hover, button:hover) #cursor-dot  { width: 10px; height: 10px; }
body:has(a:hover, button:hover) #cursor-ring { width: 52px; height: 52px; border-color: var(--accent); }
@media (pointer: coarse) { #cursor-dot, #cursor-ring { display: none; } }


/* ── Grain ─────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 1000;
  animation: grain-shift 8s steps(10) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); }
  10%  { transform: translate(-2%,-3%); }
  20%  { transform: translate(3%,1%); }
  30%  { transform: translate(-1%,2%); }
  40%  { transform: translate(2%,-1%); }
  50%  { transform: translate(-3%,3%); }
  60%  { transform: translate(1%,-2%); }
  70%  { transform: translate(-2%,1%); }
  80%  { transform: translate(3%,-3%); }
  90%  { transform: translate(-1%,2%); }
}


/* ── Utility ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}


/* ── Reveal Animations ─────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.reveal-item[data-delay="1"] { transition-delay: 0.12s; }
.reveal-item[data-delay="2"] { transition-delay: 0.22s; }
.reveal-item[data-delay="3"] { transition-delay: 0.34s; }
.reveal-item[data-delay="4"] { transition-delay: 0.46s; }
.reveal-item[data-delay="5"] { transition-delay: 0.58s; }


/* ══ HEADER ════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

/* Transparent over hero (dark photo bg) */
#header:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }
#header:not(.scrolled) .nav-link  { color: rgba(250,250,248,0.75); }
#header:not(.scrolled) .nav-link:hover { color: #fff; }
#header:not(.scrolled) .nav-cta {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
#header:not(.scrolled) .nav-cta:hover { background: rgba(255,255,255,0.15); }
#header:not(.scrolled) .hamburger span { background: #fff; }

/* Scrolled → white bar */
#header.scrolled {
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
#header.scrolled .logo-img { filter: brightness(0); } /* make logo black */
#header.scrolled .nav-link  { color: rgba(23,13,19,0.6); }
#header.scrolled .nav-link:hover { color: var(--text); }
#header.scrolled .nav-cta { color: var(--text); border-color: var(--accent); }
#header.scrolled .nav-cta:hover { background: var(--accent-grad); color: #fff; }
#header.scrolled .hamburger span { background: var(--text); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 60px);
  gap: 24px;
}

.logo-img {
  height: 36px;
  transition: filter 0.3s, opacity 0.2s;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--accent-grad);
  transition: right 0.3s var(--ease-out);
}
.nav-link:hover::after { right: 0; }

.nav-cta {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid;
  padding: 9px 22px;
  border-radius: 99px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s, background 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 0 clamp(20px, 5vw, 60px);
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(20px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.3s;
  border-top: 1px solid transparent;
}
.mobile-menu.open {
  max-height: 400px;
  padding-top: 16px;
  padding-bottom: 24px;
  border-color: var(--border);
}
.mobile-menu a {
  font-size: 24px;
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }

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


/* ══ HERO ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mesh-1, .mesh-2, .mesh-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.mesh-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 89, 149,0.28) 0%, transparent 70%);
  top: -10%; right: -5%;
  animation: mesh-float 12s ease-in-out infinite alternate;
}
.mesh-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,144,74,0.15) 0%, transparent 70%);
  bottom: 10%; left: 5%;
  animation: mesh-float 16s ease-in-out infinite alternate-reverse;
}
.mesh-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255, 89, 149,0.12) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation: mesh-float 10s ease-in-out infinite alternate;
}
@keyframes mesh-float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px,-30px) scale(1.1); }
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 560px;
  padding: clamp(100px, 14vh, 140px) clamp(20px, 5vw, 60px) clamp(60px, 10vh, 100px);
  color: var(--text-light);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(68px, 9vw, 120px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-title span {
  -webkit-text-stroke: 1px rgba(250,250,248,0.35);
  color: transparent;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light-m);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-grad);
  padding: 14px 32px;
  border-radius: 99px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.2s;
  box-shadow: 0 0 40px rgba(255, 89, 149,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(255, 89, 149,0.5);
  background: var(--accent-hover);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-m);
  padding: 14px 0;
  border-bottom: 1px solid rgba(250,250,248,0.2);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--text-light); border-color: var(--accent); }

.hero-product {
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  bottom: 0;
  z-index: 5;
  width: clamp(180px, 22vw, 360px);
}
.hero-product img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(255, 89, 149,0.3)) drop-shadow(0 0 20px rgba(0,0,0,0.4));
  animation: float-product 6s ease-in-out infinite;
}
.hero-product-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 60px;
  background: var(--accent-grad);
  filter: blur(40px);
  opacity: 0.3;
  border-radius: 50%;
}
@keyframes float-product {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
@media (max-width: 768px) {
  .hero-product { right: -30px; opacity: 0.25; width: 200px; }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: clamp(20px, 5vw, 60px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--accent-grad);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(250,250,248,0.5);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%  { left: -100%; }
  50% { left: 100%; }
  100%{ left: 100%; }
}
.scroll-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light-m);
}


/* ══ MARQUEE ════════════════════════════════ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 15px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee-run 30s linear infinite;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-track .dot { color: var(--accent); }
@keyframes marquee-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }


/* ══ SECTION COMMONS ════════════════════════ */
.section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-index {
  font-family: var(--ff-display);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 300;
  font-style: italic;
  color: rgba(23,13,19,0.05);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}
.section-index.on-dark { color: rgba(250,250,248,0.05); }

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  margin-top: 12px;
}
.section-tag.on-dark { color: rgba(184,144,74,0.8); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--accent); }
.section-title.on-dark { color: var(--text-light); }
.section-title.on-dark em { color: var(--accent); }


/* ══ PRODUTOS ═══════════════════════════════ */
.section-produtos {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .produtos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .produtos-grid { grid-template-columns: 1fr; } }

.produto-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.35s, background 0.3s;
}
.produto-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 89, 149,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.produto-card:hover {
  border-color: rgba(255, 89, 149,0.2);
  box-shadow: var(--shadow-lg);
  background: var(--surface-2);
}
.produto-card:hover::before { opacity: 1; }

.produto-img-wrap {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produto-img-wrap img {
  height: 180px;
  width: auto;
  object-fit: contain;
  transition: transform 0.55s var(--ease-out), filter 0.3s;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.1));
}
.produto-card:hover .produto-img-wrap img {
  transform: translateY(-8px) scale(1.05);
  filter: drop-shadow(0 24px 36px rgba(255, 89, 149,0.18)) drop-shadow(0 8px 16px rgba(0,0,0,0.08));
}

.produto-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 20px;
  background: var(--accent-grad);
  filter: blur(20px);
  opacity: 0;
  border-radius: 50%;
  transition: opacity 0.4s;
}
.produto-card:hover .produto-glow { opacity: 0.25; }

.produto-info { display: flex; flex-direction: column; gap: 10px; }

.produto-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-style: italic;
  color: var(--accent);
  opacity: 0.6;
  letter-spacing: 0.06em;
}

.produto-name {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.produto-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

.produto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.produto-tags span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 89, 149,0.2);
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--accent-soft);
  transition: background 0.2s, border-color 0.2s;
}
.produto-card:hover .produto-tags span {
  background: rgba(255, 89, 149,0.12);
  border-color: rgba(255, 89, 149,0.35);
}


/* ══ BENEFÍCIOS ═════════════════════════════ */
.section-beneficios {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-2);
}

.beneficios-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .beneficios-layout { grid-template-columns: 1fr; }
  .beneficios-visual { order: -1; }
}

.beneficios-list { display: flex; flex-direction: column; }

.beneficio-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
  padding: 24px 0;
  transition: background 0.2s;
}
.beneficio-item:first-child { padding-top: 0; }

.b-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.beneficio-item:last-child .b-line { display: none; }

.b-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-style: italic;
  color: var(--accent);
  opacity: 0.7;
  font-weight: 400;
  padding-top: 4px;
}

.b-content h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.beneficio-item:hover .b-content h3 { color: var(--accent); }

.b-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Visual side */
.beneficios-visual { position: relative; }
.bv-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bv-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.bv-img-bot { margin-top: 40px; }

.bv-stat {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-grad);
  color: #fff;
  text-align: center;
  padding: 20px 36px;
  border-radius: var(--r-md);
  box-shadow: 0 20px 50px rgba(255, 89, 149,0.3);
  white-space: nowrap;
}
.bv-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}
.bv-num sup { font-size: 0.5em; vertical-align: super; }
.bv-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}


/* ══ DEPOIMENTOS ════════════════════════════ */
.section-depoimentos {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
@media (max-width: 800px) { .depoimentos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .depoimentos-grid { grid-template-columns: 1fr; } }

.dep-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.35s, border-color 0.3s;
  background: var(--surface);
}
.dep-card--tall { margin-top: 40px; }
.dep-card img { width: 100%; height: auto; display: block; }
.dep-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 89, 149,0.25);
  box-shadow: var(--shadow-lg);
}


/* ══ CONTATO ════════════════════════════════ */
.section-contato {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-2);
  overflow: hidden;
}

.contato-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mesh-c1 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 89, 149,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  filter: blur(60px);
}
.mesh-c2 {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,144,74,0.06) 0%, transparent 70%);
  bottom: 50px; left: 5%;
  border-radius: 50%;
  filter: blur(50px);
}

.contato-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .contato-layout { grid-template-columns: 1fr; } }

.contato-info { display: flex; flex-direction: column; gap: 28px; }

.info-block { display: flex; align-items: flex-start; gap: 16px; }

.info-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.info-icon svg { width: 18px; height: 18px; }

.info-block strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-block p,
.info-block a { font-size: 15px; color: var(--text); line-height: 1.7; display: block; transition: color 0.2s; }
.info-block a:hover { color: var(--accent); }

.social-row { display: flex; gap: 10px; }

.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s var(--ease-out);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  color: #fff;
  background: var(--accent-grad);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Form */
.contato-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.25s, background 0.2s;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(255, 89, 149,0.1);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent-grad);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--r-sm);
  cursor: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.2s;
  box-shadow: 0 6px 24px rgba(255, 89, 149,0.28);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 89, 149,0.4);
  background: var(--accent-hover);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit-arrow { font-size: 20px; transition: transform 0.25s var(--ease-out); }
.btn-submit:hover .btn-submit-arrow { transform: translateX(4px); }
@media (pointer: coarse) { .btn-submit { cursor: pointer; } }

.form-success {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
  min-height: 20px;
}


/* ══ FOOTER ═════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-logo {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 1; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.3);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(250,250,248,0.8); }
.footer-copy {
  font-size: 12px;
  color: rgba(250,250,248,0.2);
  letter-spacing: 0.06em;
}
.footer-credit {
  text-align: center;
  font-size: 11px;
  color: rgba(250,250,248,0.12);
  letter-spacing: 0.04em;
  padding-bottom: 8px;
}


/* ══ WHATSAPP FAB ═══════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 54px; height: 54px;
  background: var(--accent-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(255, 89, 149,0.35);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.whatsapp-fab svg { width: 26px; height: 26px; fill: #fff; }
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 16px 50px rgba(255, 89, 149,0.5);
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 89, 149,0.35);
  animation: fab-ping 2.5s ease-out infinite;
}
@keyframes fab-ping {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ══ HERO — CENTERED VARIANT ════════════════ */
.hero-content--centered {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
}
.hero-content--centered .hero-eyebrow { text-align: center; }
.hero-content--centered .hero-title   { text-align: center; }
.hero-content--centered .hero-sub     { text-align: center; }
.hero-content--centered .hero-actions {
  justify-content: center;
}
.hero-content--centered .scroll-indicator { left: 50%; transform: translateX(-50%); }

/* ══ FISPQ LINK ══════════════════════════════ */
.fispq-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-blue);
  border: 1px solid rgba(83, 167, 218, 0.25);
  background: rgba(83, 167, 218, 0.05);
  padding: 8px 14px;
  border-radius: 99px;
  margin-top: 4px;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}
.fispq-link svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.fispq-link:hover {
  background: rgba(83, 167, 218, 0.12);
  border-color: rgba(83, 167, 218, 0.45);
  transform: translateY(-1px);
}
