/* ====================================================
   iCorpo — Folha de Estilos Principal
   Fonte: Garet (títulos) + Plus Jakarta Sans (corpo)
   ==================================================== */

@import url('https://api.fontshare.com/v2/css?f[]=garet@400,500,700,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── VARIÁVEIS ── */
:root {
  --burg:        #670d44;
  --burg2:       #8a1a5c;
  --green:       #c8f4a5;
  --green2:      #a8e080;
  --rose:        #c69287;
  --rose-light:  rgba(198,146,135,0.12);
  --white:       #ffffff;
  --off:         #fafaf8;
  --text:        #2d1320;
  --muted:       #7a6070;
  --border:      rgba(103,13,68,0.1);
  --nav-h:       72px;
}
::selection { background: var(--green); color: var(--burg); }

/* ── CORPO ── */
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.75;
  font-size: 1.05rem;
}

/* ── TÍTULOS ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garet', 'DM Sans', system-ui, sans-serif;
  line-height: 1.1;
}

/* ═══════════════════════════════════════
   NAV — pílula flutuante verde vidro
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  height: 60px;
  display: flex; align-items: center;
  gap: 0;
  padding: 0 0.9rem 0 1.6rem;
  width: max-content;
  max-width: calc(100% - 2.5rem);
  border-radius: 100px;
  background: rgba(103,13,68,0.22);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(103,13,68,0.18);
  box-shadow: 0 8px 32px rgba(103,13,68,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.nav.light {
  background: rgba(103,13,68,0.1);
  border-color: rgba(103,13,68,0.14);
  box-shadow: 0 8px 36px rgba(103,13,68,0.08);
}

/* Logo */
.nav-logo { margin-right: 2rem; }
.nav-logo img { height: 36px; display: block; }

/* Links */
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; margin-right: 2rem; }
.nav-links a {
  font-family: 'Garet', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  text-decoration: none; color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em; transition: all 0.22s;
  position: relative; padding-bottom: 2px; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--green);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green); }
.nav.light .nav-links a { color: rgba(103,13,68,0.75); }
.nav.light .nav-links a:hover,
.nav.light .nav-links a.active { color: var(--burg); }
.nav.light .nav-links a::after { background: var(--burg); }

/* CTA */
.nav-cta {
  background: var(--green); color: var(--burg);
  padding: 0.6rem 1.4rem; border-radius: 50px;
  font-family: 'Garet', sans-serif;
  font-size: 0.82rem; font-weight: 800;
  text-decoration: none; border: 2px solid var(--green);
  transition: all 0.25s; white-space: nowrap; letter-spacing: 0.03em;
  flex-shrink: 0;
}
.nav-cta:hover { background: transparent; color: var(--green); }
.nav.light .nav-cta { background: var(--burg); color: var(--white); border-color: var(--burg); }
.nav.light .nav-cta:hover { background: rgba(103,13,68,0.75); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: 0.5rem;
}
.burger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.9); border-radius: 2px; transition: all 0.3s; }
.nav.light .burger span { background: var(--burg); }

/* Menu mobile */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 299;
  background: var(--burg);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mob-menu.show { display: flex; }
.mob-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 2rem; cursor: pointer; }
.mob-menu a {
  font-family: 'Garet', sans-serif; font-size: 2rem; font-weight: 800;
  color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.2s;
  letter-spacing: -0.01em;
}
.mob-menu a:hover { color: var(--green); }

/* ═══════════════════════════════════════
   HERO — PÁGINA INICIAL
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative; display: flex; align-items: center;
  padding: 0 5%; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('header.jpg') center 30% / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(103,13,68,0.97) 0%,
      rgba(103,13,68,0.85) 40%,
      rgba(103,13,68,0.35) 70%,
      rgba(103,13,68,0.05) 100%);
}
/* Grain texture */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.45; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1260px; width: 100%; margin: 0 auto;
  padding-top: 5rem;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 100vh;
}
.hero-eyebrow {
  font-family: 'Garet', sans-serif;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.9rem;
  animation: fadeUp 0.7s ease both; opacity: 0.8;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--green); border-radius: 2px; opacity: 0.7;
}
.hero-tagline {
  font-family: 'Garet', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: rgba(255,255,255,0.5); font-weight: 400;
  margin-bottom: 0.2rem;
  animation: fadeUp 0.75s 0.06s ease both;
}
.hero-word {
  font-family: 'Garet', sans-serif;
  display: block;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 800; color: var(--green);
  line-height: 0.88; letter-spacing: -0.04em;
  margin-bottom: 2.2rem;
  transition: opacity 0.38s ease, transform 0.38s ease;
  animation: fadeUp 0.85s 0.1s ease both;
}
.hero-sub {
  font-size: 1.12rem; color: rgba(255,255,255,0.55);
  line-height: 1.9; max-width: 560px;
  margin-bottom: 3rem; font-weight: 300;
  animation: fadeUp 0.85s 0.18s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.85s 0.25s ease both;
}

/* Foto hero — um frame grande e limpo */
.hero-photos {
  position: relative;
  animation: fadeUp 1s 0.15s ease both;
  display: flex; justify-content: center; align-items: center;
}
.hero-frame {
  position: relative;
  width: 100%; max-width: 460px;
  border-radius: 32px; overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
  border: 1px solid rgba(200,244,165,0.15);
}
.hero-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
.hero-frame-badge {
  position: absolute; bottom: 1.5rem; left: 1.2rem; right: 1.2rem;
  background: rgba(103,13,68,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(200,244,165,0.22);
  border-radius: 18px; padding: 1rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.hero-frame-badge span {
  font-family: 'Garet', sans-serif; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
}
.hero-frame-badge .hfb-dot {
  width: 4px; height: 4px; border-radius: 50%; background: rgba(200,244,165,0.4); flex-shrink: 0;
}
/* Decorative accent circle */
.hero-accent {
  position: absolute; top: -60px; right: -60px; width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,244,165,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* kept for backward compat */
.hp-main, .hp-sec, .hp-pill { display: none; }

/* ═══════════════════════════════════════
   HERO — PÁGINAS INTERNAS
═══════════════════════════════════════ */
.page-hero {
  min-height: 36vh;
  position: relative;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 3.5rem) 5% 5rem;
  background: var(--burg);
  overflow: hidden;
}
/* Círculo grande — canto superior direito */
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 52px solid rgba(200,244,165,0.07);
  pointer-events: none;
}
/* Círculo menor — canto inferior direito */
.page-hero::after {
  content: '';
  position: absolute;
  right: 80px; bottom: -70px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 36px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%; margin: 0 auto;
}
.page-hero-label {
  font-family: 'Garet', sans-serif;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(200,244,165,0.75);
  margin-bottom: 0.85rem; display: block;
}
.page-hero h1 {
  font-family: 'Garet', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--white); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  margin: 0;
}

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.ticker { background: var(--green); overflow: hidden; padding: 0.9rem 0; }
.ticker-track { display: inline-flex; animation: ticker-scroll 55s linear infinite; white-space: nowrap; }
.ticker-item {
  font-family: 'Garet', sans-serif;
  font-size: 0.8rem; font-weight: 800; color: var(--burg);
  letter-spacing: 0.14em; text-transform: uppercase; padding: 0 2.5rem;
}
.ticker-sep { color: rgba(103,13,68,0.3); margin: 0 -0.5rem; }

/* ═══════════════════════════════════════
   SEÇÕES / CONTAINERS
═══════════════════════════════════════ */
section { padding: 7.5rem 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.sec-label {
  display: inline-block;
  font-family: 'Garet', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--burg); background: var(--rose-light);
  padding: 0.4rem 1.1rem; border-radius: 50px; margin-bottom: 1.3rem;
}
.sec-title {
  font-family: 'Garet', sans-serif;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  color: var(--burg); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em; margin-bottom: 1.3rem;
}
.sec-title em { font-style: italic; color: var(--rose); font-weight: 700; }
.sec-body {
  font-size: 1.08rem; color: var(--muted);
  line-height: 1.88; max-width: 600px;
}

/* ── REVEAL ANIMATION ── */
.r { opacity: 0; transform: translateY(30px); transition: opacity 0.75s ease, transform 0.75s ease; }
.r.on { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   BOTÕES
═══════════════════════════════════════ */
.btn-green {
  background: var(--green); color: var(--burg);
  padding: 0.95rem 2.2rem; border-radius: 50px;
  font-family: 'Garet', sans-serif;
  font-weight: 800; font-size: 0.9rem; letter-spacing: 0.03em;
  text-decoration: none; border: 2px solid var(--green);
  transition: all 0.28s ease;
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.btn-green:hover { background: transparent; color: var(--green); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,244,165,0.25); }

.btn-white {
  background: transparent; color: #fff;
  padding: 0.95rem 2.2rem; border-radius: 50px;
  font-family: 'Garet', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.03em;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.28s ease;
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.btn-white:hover { border-color: #fff; background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-burg {
  background: var(--burg); color: #fff;
  padding: 0.95rem 2.2rem; border-radius: 50px;
  font-family: 'Garet', sans-serif;
  font-weight: 800; font-size: 0.9rem; letter-spacing: 0.03em;
  text-decoration: none; border: 2px solid var(--burg);
  transition: all 0.28s ease;
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.btn-burg:hover { background: transparent; color: var(--burg); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(103,13,68,0.2); }

.btn-outline-burg {
  background: transparent; color: var(--burg);
  padding: 0.88rem 2rem; border-radius: 50px;
  font-family: 'Garet', sans-serif;
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.03em;
  text-decoration: none; border: 2px solid rgba(103,13,68,0.22);
  transition: all 0.28s ease;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline-burg:hover { border-color: var(--burg); background: var(--burg); color: #fff; transform: translateY(-2px); }

/* WhatsApp */
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--green); color: var(--burg);
  padding: 0.85rem 1.75rem; border-radius: 50px;
  font-family: 'Garet', sans-serif;
  font-size: 0.88rem; font-weight: 800; text-decoration: none;
  border: 2px solid var(--green); transition: all 0.28s ease;
  letter-spacing: 0.03em;
}
.btn-wa:hover { background: transparent; color: var(--green); transform: translateY(-2px); }
.btn-wa svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* ═══════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════ */
.newsletter { background: var(--green); padding: 5.5rem 5%; }
.nl-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 3rem; flex-wrap: wrap;
}
.nl-text h2 {
  font-family: 'Garet', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--burg); font-weight: 800; line-height: 1.2; max-width: 400px;
}
.nl-text p { font-size: 0.98rem; color: rgba(103,13,68,0.55); margin-top: 0.5rem; }
.nl-form { display: flex; gap: 0.75rem; flex: 0 0 420px; max-width: 100%; }
.nl-form input {
  flex: 1; padding: 0.95rem 1.4rem; border-radius: 50px;
  border: 2px solid rgba(103,13,68,0.18);
  background: rgba(255,255,255,0.55);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.98rem;
  outline: none; color: var(--burg); transition: all 0.25s;
}
.nl-form input::placeholder { color: rgba(103,13,68,0.38); }
.nl-form input:focus { border-color: var(--burg); background: rgba(255,255,255,0.88); }
.nl-btn {
  background: var(--burg); color: #fff;
  padding: 0.95rem 1.8rem; border-radius: 50px;
  font-family: 'Garet', sans-serif;
  font-size: 0.88rem; font-weight: 800; border: none;
  cursor: pointer; transition: all 0.25s; white-space: nowrap; letter-spacing: 0.03em;
}
.nl-btn:hover { background: var(--burg2); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: var(--burg); padding: 5.5rem 5% 2.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 80px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 240px; }
.footer-col h4 {
  font-family: 'Garet', sans-serif;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.95rem; color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--green); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.2); }
.footer-soc { display: flex; gap: 1.75rem; }
.footer-soc a {
  font-family: 'Garet', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.32);
  text-decoration: none; transition: color 0.2s;
}
.footer-soc a:hover { color: var(--green); }

/* ── WA FLUTUANTE ── */
.wa-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 100; }
.wa-pill {
  display: flex; align-items: center; gap: 0.6rem;
  background: #25d366; color: #fff;
  padding: 0.78rem 1.4rem; border-radius: 50px;
  font-family: 'Garet', sans-serif;
  font-size: 0.88rem; font-weight: 800; text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.42);
  transition: all 0.28s ease; letter-spacing: 0.02em;
}
.wa-pill:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 36px rgba(37,211,102,0.52); }
.wa-pill svg { width: 18px; height: 18px; fill: currentColor; }

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-photos { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 5rem 5%; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav { padding: 0 0.8rem 0 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nl-inner { flex-direction: column; }
  .nl-form { flex: 0 0 auto; width: 100%; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .wa-pill span { display: none; }
  .wa-pill { padding: 1rem; border-radius: 50%; }
  .page-hero { min-height: 30vh; padding-bottom: 4rem; }
  .page-hero h1 { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .page-hero::before { right: -20vw; width: 75vw; }
  .hero-frame { max-width: 320px; }
}
                                                                                                                        