@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --green:       #1B3A2D;
  --green-mid:   #2D5C45;
  --green-soft:  #E4EDE6;
  --gold:        #B8925A;
  --gold-light:  #D4B483;
  --cream:       #F7F2EA;
  --cream-dark:  #EDE5D5;
  --text:        #1A1A18;
  --muted:       #6B7A70;
  --white:       #FFFFFF;
  --border:      rgba(27,58,45,0.12);
  --shadow-sm:   0 4px 20px rgba(27,58,45,0.08);
  --shadow-md:   0 12px 48px rgba(27,58,45,0.12);
  --shadow-lg:   0 24px 80px rgba(27,58,45,0.16);
  --radius:      18px;
  --radius-sm:   10px;
  --nav-h:       80px;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── UTILITIES ─────────────────────────────────────── */
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.container-sm { width: min(780px, calc(100% - 40px)); margin: 0 auto; }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

h1,h2,h3,h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 500;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

p { font-size: 1.05rem; color: var(--muted); }

.lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  transition: all .28s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,58,45,0.25);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184,146,90,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── NAV ────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(247,242,234,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  position: relative;
  flex-shrink: 0;
}
.nav-logo-mark svg {
  width: 100%;
  height: 100%;
}

.nav-brand-text { line-height: 1.2; }
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .02em;
}
.nav-brand-sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .87rem;
  font-weight: 400;
  color: var(--text);
  transition: all .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--green-soft);
  color: var(--green);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: .85rem;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all .3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--cream);
  z-index: 99;
  padding: 32px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 1.15rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-mobile a::after { content: '→'; color: var(--gold); }
.nav-mobile a:hover { background: var(--green-soft); color: var(--green); }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(27,58,45,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(184,146,90,0.08) 0%, transparent 50%);
}

.hero-deco {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(27,58,45,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-deco-2 {
  position: absolute;
  bottom: -120px;
  right: 80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(184,146,90,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 580px; }

.hero h1 { color: var(--green); margin-bottom: 28px; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero .lead { margin-bottom: 44px; }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  height: 520px;
}

.hero-main-card {
  position: absolute;
  inset: 0;
  background: var(--green);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.hero-main-card-inner {
  color: var(--white);
}
.hero-main-card-inner .tag { color: var(--gold-light); }
.hero-main-card-inner h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.hero-main-card-inner p { color: rgba(255,255,255,0.7); font-size: .95rem; }

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-card-float-1 {
  top: -24px;
  right: -24px;
  max-width: 200px;
}
.hero-card-float-2 {
  bottom: -24px;
  left: -24px;
  max-width: 220px;
}
.float-icon {
  width: 44px;
  height: 44px;
  background: var(--green-soft);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.float-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.float-text span {
  font-size: .75rem;
  color: var(--muted);
}

/* ─── CARDS ──────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-soft);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.card h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--green); }
.card p { font-size: .95rem; }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gold);
  transition: gap .2s;
}
.card .card-link:hover { gap: 12px; }

/* ─── SECTION HEADER ─────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { color: var(--green); margin-bottom: 20px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ─── BANDS ──────────────────────────────────────────── */
.band-dark {
  background: var(--green);
  color: var(--white);
  padding: 80px 0;
}
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark p { color: rgba(255,255,255,0.7); }
.band-dark .tag { color: var(--gold-light); }

.band-cream { background: var(--cream-dark); padding: 80px 0; }
.band-white { background: var(--white); padding: 100px 0; }

/* ─── 5 PORTE ────────────────────────────────────────── */
.porte-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.porta {
  background: var(--green);
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: all .35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.porta:last-child { border-right: none; }
.porta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .35s ease;
}
.porta:hover::before { transform: scaleX(1); }
.porta:hover { background: var(--green-mid); }

.porta-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.porta-icon { font-size: 1.8rem; margin-bottom: 16px; }
.porta h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.porta p {
  font-size: .82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.porta-arrow {
  margin-top: 24px;
  color: var(--gold-light);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.porta:hover .porta-arrow { gap: 14px; }

/* ─── PERCORSI CARDS ─────────────────────────────────── */
.percorso-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.percorso-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.percorso-header {
  padding: 36px 36px 28px;
  background: var(--green);
  position: relative;
}
.percorso-header.gold-bg { background: linear-gradient(135deg, #8B6914, var(--gold)); }
.percorso-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.percorso-header h3 { color: var(--white); font-size: 1.7rem; }
.percorso-header p { color: rgba(255,255,255,0.7); font-size: .9rem; margin-top: 8px; }

.percorso-body {
  padding: 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.percorso-includes {
  flex: 1;
  margin-bottom: 28px;
}
.percorso-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  color: var(--text);
}
.percorso-includes li:last-child { border-bottom: none; }
.percorso-includes li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.percorso-price {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.percorso-price .from {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.percorso-price .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--green);
  font-weight: 600;
  line-height: 1;
}
.percorso-price .period { font-size: .85rem; color: var(--muted); }

/* ─── ABBONAMENTI ─────────────────────────────────────── */
.abbonamento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.abbonamento-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
}
.abbonamento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.abbonamento-card.featured {
  border: 2px solid var(--gold);
  position: relative;
}
.abbonamento-card.featured::before {
  content: 'PIÙ SCELTO';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 50px;
}
.abb-header {
  padding: 28px 28px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.abb-header h4 { font-size: 1.25rem; color: var(--green); margin-bottom: 6px; }
.abb-header p { font-size: .83rem; }
.abb-price { padding: 20px 28px; border-bottom: 1px solid var(--border); }
.abb-price .amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--green);
  font-weight: 600;
  line-height: 1;
}
.abb-price .period { font-size: .85rem; color: var(--muted); }
.abb-features { padding: 20px 28px; }
.abb-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .88rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.abb-features li:last-child { border-bottom: none; }
.abb-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.abb-cta { padding: 20px 28px 28px; }
.abb-cta .btn { width: 100%; justify-content: center; }

/* ─── SHOP ───────────────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-thumb {
  aspect-ratio: 1;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  font-size: 3.5rem;
}
.product-info { padding: 22px; }
.product-info h4 { font-size: 1rem; color: var(--text); margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.product-info .price { font-family: var(--font-display); font-size: 1.4rem; color: var(--green); }
.product-info .btn { margin-top: 14px; width: 100%; justify-content: center; font-size: .85rem; padding: 12px; }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 1rem; }
.testimonial-text { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--green-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .92rem; color: var(--text); }
.testimonial-role { font-size: .8rem; color: var(--muted); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--green);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand { }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-brand-sub {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: .9rem;
  transition: background .2s;
  color: var(--white);
}
.footer-social:hover { background: var(--gold); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  padding: 5px 0;
  color: rgba(255,255,255,0.65);
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ─── PAGE HERO ─────────────────────────────────────── */
.page-hero {
  background: var(--green);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}
.page-hero .tag { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 24px; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero .lead { color: rgba(255,255,255,0.7); }
.page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* ─── DIVIDER ───────────────────────────────────────── */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 28px;
}
.divider.center { margin: 20px auto 28px; }

/* ─── BADGE ─────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.badge-green { background: var(--green-soft); color: var(--green); }
.badge-gold { background: rgba(184,146,90,0.12); color: var(--gold); }

/* ─── TWO COL ────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 28px;
  padding: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-band h2 { color: var(--white); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-band-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── BLOG CARDS ─────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
}
.blog-body { padding: 28px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.blog-cat {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-date { font-size: .78rem; color: var(--muted); }
.blog-body h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
.blog-body p { font-size: .9rem; }
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--green);
}

/* ─── FORM ───────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .88rem; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s;
  outline: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--green);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── VIDEO EMBED ────────────────────────────────────── */
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ─── ORARIO CARD ────────────────────────────────────── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.schedule-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px;
  border: 1px solid var(--border);
  text-align: center;
}
.schedule-day {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.schedule-class {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 4px;
}
.schedule-time { font-size: .82rem; color: var(--muted); }

/* ─── STEP LIST ──────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.step h4 { font-size: 1.2rem; color: var(--green); margin-bottom: 8px; }
.step p { font-size: .95rem; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  gap: 20px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ─── WHATSAPP FLOAT ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform .2s;
  color: var(--white);
  font-size: 1.5rem;
}
.wa-float:hover { transform: scale(1.08); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .porte-grid { grid-template-columns: repeat(3, 1fr); }
  .porta:nth-child(4), .porta:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 28px; }
  .porte-grid { grid-template-columns: 1fr 1fr; }
  .porta:nth-child(5) { grid-column: 1/-1; border-top: 1px solid rgba(255,255,255,0.08); }
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band { padding: 44px 28px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .porte-grid { grid-template-columns: 1fr; }
  .porta { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-btns { flex-direction: column; }
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-up { animation: fadeUp .65s ease both; }
.animate-up-2 { animation: fadeUp .65s .12s ease both; }
.animate-up-3 { animation: fadeUp .65s .24s ease both; }
.animate-up-4 { animation: fadeUp .65s .36s ease both; }
