/* Grupo Green — landing styles. Brand book derived. */
:root {
  --green-primary: #009775;
  --green-mint: #40C1AC;
  --green-light: #D4EB8E;
  --yellow: #F1C400;
  --blue-soft: #DDE5ED;
  --white: #FFFFFF;
  --ink: #0E2A24;
  --ink-soft: #3a4f49;
  --bg: #FAFBF7;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Albert Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

.handwritten {
  font-family: 'Caveat', cursive;
  font-weight: 500;
}

.serif {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

button { font-family: inherit; cursor: pointer; border: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--green-primary);
  color: white;
  box-shadow: 0 6px 20px rgba(0,151,117,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,151,117,.35); background: #00805f; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(14,42,36,.18);
}
.btn-ghost:hover { background: rgba(14,42,36,.05); }
.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(241,196,0,.3);
}
.btn-yellow:hover { transform: translateY(-2px); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-primary);
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track { display: flex; width: max-content; animation: marquee 90s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Hero blob float */
@keyframes float-1 { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(20px,-30px) rotate(8deg)} }
@keyframes float-2 { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(-25px,15px) rotate(-6deg)} }
@keyframes float-3 { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(15px,20px) rotate(4deg)} }
.float-1 { animation: float-1 9s ease-in-out infinite; }
.float-2 { animation: float-2 11s ease-in-out infinite; }
.float-3 { animation: float-3 13s ease-in-out infinite; }

/* Pulse */
@keyframes pulse-ring {
  0% { transform: scale(.95); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.pulse-ring::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  border: 3px solid var(--green-mint);
  animation: pulse-ring 2.4s ease-out infinite;
}

/* WA float */
@keyframes wa-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

/* Card hover */
.card-lift { transition: transform .3s, box-shadow .3s; }
.card-lift:hover { transform: translateY(-4px); }

/* Squiggle underline */
.squiggle {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'><path d='M2 6 Q 17 0 32 6 T 62 6 T 92 6 T 122 6' stroke='%23F1C400' stroke-width='3.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.4em;
  padding-bottom: 0.15em;
}

/* Number ticker monospace feel */
.tabular { font-variant-numeric: tabular-nums; }

/* Scrollbar invisible for marquee */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

/* Mobile menu — hide scrollbar */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { scrollbar-width: none; -ms-overflow-style: none; }

/* Responsive */
@media (max-width: 880px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  h1 { font-size: 38px !important; }
  h2 { font-size: 30px !important; }
  .nav-desktop { display: none !important; }
  .ig-label-desktop { display: none; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .cont-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .rub-grid { grid-template-columns: 1fr !important; }
  .hamburger-btn { display: inline-flex !important; }
  .header-cta-desktop { display: none !important; }
}
@media (min-width: 881px) {
  .hamburger-btn { display: none !important; }
  .mobile-menu { display: none !important; }
}
