/* ===== Evento Page — matches new_website design system exactly ===== */
:root, [data-theme="light"] {
  --primary: #2E8B8E; --primary-dark: #226668; --primary-soft: rgba(46,139,142,0.08);
  --accent: #C08B5C; --accent-hover: #A87444;
  --text-dark: #1A1E1E; --text-body: #5B6768; --text-muted: #8A9596;
  --text-light: #FDFAF5; --bg-primary: #FDFAF5; --bg-secondary: #F4EFE6; --bg-card: #FFFFFF;
  --border-color: rgba(46,139,142,0.12); --border-light: rgba(46,139,142,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05); --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08); --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);
  --header-bg: rgba(253,250,245,0.92); --header-border: rgba(46,139,142,0.1);
  --footer-bg: #1A1E1E; --footer-text: rgba(253,250,245,0.6);
  --logo-filter: none;
  --radius-md: 12px; --radius-lg: 16px; --radius-xl: 24px; --radius-2xl: 32px; --radius-full: 9999px;
  --font-heading: 'Playfair Display', Georgia, serif; --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1); --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1); --ease-silk: cubic-bezier(0.19, 1, 0.22, 1);
  --toggle-bg: var(--bg-secondary);
}
[data-theme="dark"] {
  --primary: #4DB8BB; --primary-dark: #3A9A9D; --primary-soft: rgba(77,184,187,0.1);
  --accent: #D4A373; --accent-hover: #C08B5C;
  --text-dark: #E8E4DD; --text-body: #A0A8A9; --text-muted: #6B7778;
  --text-light: #E8E4DD; --bg-primary: #131818; --bg-secondary: #1A2020; --bg-card: #1E2626;
  --border-color: rgba(77,184,187,0.12); --border-light: rgba(255,255,255,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25); --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.35); --shadow-xl: 0 16px 48px rgba(0,0,0,0.4);
  --header-bg: rgba(19,24,24,0.92); --header-border: rgba(77,184,187,0.08);
  --footer-bg: #0E1212; --footer-text: rgba(232,228,221,0.5);
  --logo-filter: invert(1);
  --toggle-bg: var(--bg-card);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; touch-action: manipulation; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--text-body); background: var(--bg-primary); overflow-x: hidden; transition: background 0.5s var(--ease-silk), color 0.5s var(--ease-silk); }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); font-weight: 500; color: var(--text-dark); line-height: 1.2; transition: color 0.5s var(--ease-silk); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Header */
.header { position: fixed; top: 38px; left: 0; right: 0; z-index: 1000; background: var(--header-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--header-border); transition: box-shadow 0.6s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease), top 0.4s var(--ease); }
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo img { height: 42px; width: auto; filter: var(--logo-filter); transition: filter 0.5s var(--ease); }
.theme-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-color); background: var(--toggle-bg); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.3s var(--ease-bounce); color: var(--text-body); flex-shrink: 0; }
.theme-toggle:hover { transform: scale(1.08); border-color: var(--primary); color: var(--primary); }
.theme-toggle svg { width: 18px; height: 18px; transition: transform 0.5s var(--ease-bounce); }
.theme-toggle:hover svg { transform: rotate(15deg); }
.theme-toggle .icon-sun, .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 13px; font-weight: 500; letter-spacing: 0.3px; color: var(--text-body); padding: 8px 4px; position: relative; transition: color 0.4s ease; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after { content:''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: right; transition: transform 0.4s ease; border-radius: 2px; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.header-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--primary); color: var(--text-light); height: 40px; padding: 0 18px; border-radius: var(--radius-full); font-size: 13px; font-weight: 600; letter-spacing: 0.2px; transition: background 0.4s ease, transform 0.3s ease; }
.header-cta-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.menu-toggle { display: none; background: none; border: 1.5px solid var(--text-body); border-radius: 6px; cursor: pointer; padding: 7px 14px; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-body); transition: border-color 0.3s ease, color 0.3s ease; }
.mobile-menu { display: none; position: fixed; top: 110px; left: 0; right: 0; bottom: auto; background: var(--bg-primary); z-index: 999; flex-direction: column; padding: 16px 20px; gap: 4px; overflow-y: auto; max-height: calc(100vh - 110px); box-shadow: var(--shadow-lg); border-bottom: 1px solid var(--border-color); }
.mobile-menu.active { display: flex; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 16px; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--border-light); }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn { color: #fff !important; border-bottom: none; padding: 14px 24px; text-align: center; display: flex; justify-content: center; }

/* Page Hero */
.page-hero { position: relative; width: 100%; aspect-ratio: 47/20; min-height: 320px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: 110px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; will-change: transform; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%); }
.page-hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 60px 24px; max-width: 700px; }
.page-hero-badge { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); padding: 6px 18px; border-radius: var(--radius-full); font-size: 13px; font-weight: 500; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.25); }
.page-hero-content h1 { font-size: clamp(32px, 6vw, 52px); color: #fff; margin-bottom: 16px; }
.page-hero-content p { font-size: clamp(16px, 2vw, 19px); opacity: 0.9; max-width: 540px; margin: 0 auto; line-height: 1.6; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; font-family: var(--font-body); font-size: 15px; font-weight: 600; border-radius: var(--radius-full); border: 2px solid transparent; cursor: pointer; transition: all 0.5s var(--ease-silk); text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--accent); color: var(--text-light); border-color: var(--accent); box-shadow: 0 4px 14px rgba(168,83,47,0.25); }
.btn-primary:hover { background: #8B4526; border-color: #8B4526; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(168,83,47,0.35); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--text-light); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1EBE57; border-color: #1EBE57; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Sections */
.section { padding: 96px 24px; }
.section-alt { background: var(--bg-secondary); }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-label { display: inline-block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 16px; }
.section-header h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--text-body); line-height: 1.7; }
.highlight { color: var(--primary); font-weight: 600; }

/* Content Block */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.content-block:last-child { margin-bottom: 0; }
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.content-text h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.content-text p { font-size: 16px; margin-bottom: 14px; line-height: 1.8; }

/* Feature List */
.feature-list { margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-dark); }
.feature-item-icon { width: 28px; height: 28px; background: var(--primary-soft); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.feature-item-icon svg { width: 14px; height: 14px; }

/* Timeline */
.timeline { position: relative; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: var(--tl-start, 20px); bottom: var(--tl-end, 20px); width: 2px; background: var(--border-color); border-radius: 2px; }
.timeline-progress { position: absolute; left: 15px; top: var(--tl-start, 20px); width: 2px; height: 0; background: var(--primary); border-radius: 2px; z-index: 1; }
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -48px; top: 4px; width: 32px; height: 32px; background: var(--bg-card); border: 2px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 12px; font-weight: 700; color: var(--text-muted); z-index: 2; transition: background 0.5s var(--ease-silk), color 0.5s var(--ease-silk), border-color 0.5s var(--ease-silk), box-shadow 0.5s var(--ease-silk); }
.timeline-item.active .timeline-dot { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(46,139,142,0.15); }
.timeline-card { background: var(--bg-card); border: 2px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px 28px 24px; transition: border-color 0.5s var(--ease-silk), box-shadow 0.5s var(--ease-silk), background 0.5s var(--ease-silk); }
.timeline-item.active .timeline-card { border-color: var(--primary); box-shadow: var(--shadow-md); }
.timeline-card-label { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 8px; }
.timeline-card h4 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.timeline-card h4 em { font-style: italic; color: var(--primary); }
.timeline-card p { font-size: 14px; color: var(--text-body); line-height: 1.8; margin-bottom: 10px; }
.timeline-card p:last-child { margin-bottom: 0; }
.timeline-card-inner { display: flex; gap: 20px; align-items: flex-start; }
.timeline-card-img { width: 120px; height: 120px; min-width: 120px; object-fit: cover; border-radius: var(--radius-md); aspect-ratio: 1/1; animation: img-float 4s ease-in-out infinite; }
@keyframes img-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.timeline-item:nth-child(2) .timeline-card-img { animation-delay: 0.6s; }
.timeline-item:nth-child(3) .timeline-card-img { animation-delay: 1.2s; }
.timeline-item:nth-child(4) .timeline-card-img { animation-delay: 0.3s; }
.timeline-item:nth-child(5) .timeline-card-img { animation-delay: 0.9s; }
.timeline-item:nth-child(6) .timeline-card-img { animation-delay: 1.5s; }
.timeline-card-text { flex: 1; }

/* Trust Badges */
.trust-badges { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 40px; }
.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 24px 28px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); transition: transform 0.6s var(--ease-silk), box-shadow 0.6s var(--ease-silk); min-width: 160px; text-align: center; }
.trust-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-badge .number { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--primary); line-height: 1; }
.trust-badge .label { font-size: 14px; color: var(--text-body); font-weight: 500; }

/* Urgency Banner */
.urgency-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; text-align: center; padding: 10px 20px; font-size: 14px; font-weight: 600; letter-spacing: 0.3px; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); line-height: 1.8; }
.urgency-banner span { background: rgba(255,255,255,0.2); padding: 2px 10px; border-radius: 6px; font-weight: 700; white-space: nowrap; display: inline-block; }

/* Scarcity / Spots counter */
.spots-counter { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); backdrop-filter: blur(4px); padding: 8px 20px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; color: var(--text-dark); border: 1px solid var(--border-light); margin-top: 16px; }
.spots-dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }

/* Pulse CTA animation */
.btn-pulse { animation: pulse-btn 2.5s infinite; }
@keyframes pulse-btn { 0%,100% { box-shadow: 0 4px 14px rgba(168,83,47,0.25); } 50% { box-shadow: 0 4px 24px rgba(168,83,47,0.5); } }

/* Chakra Detail Boxes */
.chakra-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.chakra-detail-box { padding: 16px; border-radius: var(--radius-md); font-size: 14px; line-height: 1.7; }
.chakra-detail-box h5 { font-family: var(--font-body); font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.chakra-detail-box.blocked { background: rgba(220,53,69,0.06); border: 1px solid rgba(220,53,69,0.15); }
.chakra-detail-box.blocked h5 { color: #dc3545; }
.chakra-detail-box.unblocked { background: rgba(40,167,69,0.06); border: 1px solid rgba(40,167,69,0.15); }
.chakra-detail-box.unblocked h5 { color: #28a745; }
.chakra-detail-box.cta-link { background: var(--primary-soft); border: 1px solid var(--border-color); cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; display: block; }
.chakra-detail-box.cta-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.chakra-detail-box.cta-link h5 { color: var(--primary); }

/* Heart Text */
.heart-text { font-size: 18px; font-style: italic; color: var(--primary); text-align: center; margin-top: 24px; padding: 24px; background: var(--primary-soft); border-radius: var(--radius-lg); border: 1px solid var(--border-color); line-height: 1.8; }

/* Audience Grid */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.audience-card { background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 32px 24px; display: flex; gap: 20px; align-items: flex-start; transition: transform 0.6s var(--ease-silk), box-shadow 0.6s var(--ease-silk); }
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.audience-icon { width: 52px; height: 52px; background: var(--primary-soft); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.audience-icon svg { width: 24px; height: 24px; }
.audience-card h4 { font-family: var(--font-body); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.audience-card p { font-size: 14px; color: var(--text-body); margin: 0; line-height: 1.6; }

/* Video embed */
.video-wrapper { max-width: 800px; margin: 0 auto; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-wrapper .video-inner { position: relative; padding-bottom: 56.25%; height: 0; background: #1a1a1a; }
.content-block .video-wrapper { width: 100%; max-width: none; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 40px; }
.video-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--bg-card); }
.video-card .video-inner { position: relative; padding-bottom: 56.25%; height: 0; }
.video-card iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-card p { text-align: center; padding: 12px 0; color: var(--text-muted); font-size: 13px; margin: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 960px; margin: 0 auto; }
.price-date-badge { display: inline-block; background: var(--primary); color: #fff; font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; padding: 6px 20px; border-radius: 50px; margin-bottom: 20px; }
.price-card { background: var(--bg-card); border: 2px solid var(--primary); border-radius: var(--radius-2xl); padding: 48px 36px; text-align: center; box-shadow: var(--shadow-lg); transition: transform 0.6s var(--ease-silk), box-shadow 0.6s var(--ease-silk); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.price-card h3 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 8px; }
.price-amount { font-family: var(--font-heading); font-size: 56px; font-weight: 700; color: var(--primary); line-height: 1; }
.price-amount span { font-size: 24px; vertical-align: top; }
.price-period { color: var(--text-muted); font-size: 14px; margin-top: 8px; line-height: 1.6; }
.price-features { text-align: left; margin: 28px 0; padding: 0; list-style: none; }
.price-features li { padding: 12px 0; border-bottom: 1px solid var(--border-light); font-size: 15px; color: var(--text-body); display: flex; align-items: center; gap: 12px; }
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '\2713'; color: var(--primary); font-weight: 700; font-size: 16px; }
.guarantee-box { max-width: 560px; margin: 32px auto 0; text-align: center; padding: 28px; background: var(--bg-card); border-radius: var(--radius-xl); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.guarantee-box p { color: var(--text-body); font-size: 15px; margin: 0; line-height: 1.7; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; transition: border-color 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk); }
.faq-item:hover { border-color: var(--primary); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; gap: 16px; }
.faq-question h4 { font-family: var(--font-body); font-size: 16px; font-weight: 600; margin: 0; flex: 1; }
.faq-icon { width: 24px; height: 24px; color: var(--primary); transition: transform 0.4s var(--ease-silk); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 0; font-size: 15px; line-height: 1.8; color: var(--text-body); display: none; }
.faq-item.active .faq-answer { display: block; padding-bottom: 20px; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent) 100%); border-radius: var(--radius-2xl); padding: 64px 48px; text-align: center; color: var(--text-light); box-shadow: var(--shadow-xl); max-width: 900px; margin: 0 auto; }
.cta-section h2 { color: var(--text-light); font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 16px; }
.cta-section p { color: rgba(255,253,249,0.9); font-size: 17px; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-white { background: #fff; color: var(--primary); border-color: #fff; font-weight: 700; }
.cta-section .btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.cta-reassurance { margin-top: 20px; font-size: 14px; color: rgba(255,253,249,0.65); }

/* Footer */
.footer { background: var(--footer-bg); color: rgba(255,253,249,0.7); padding: 72px 24px 32px; transition: background 0.5s var(--ease-silk); }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo { margin-bottom: 24px; }
.footer-logo img { height: 56px; width: auto; filter: brightness(0) invert(1); margin: 0 auto; display: block; }
.footer-tagline { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 420px; margin: 0 auto 32px; line-height: 1.7; }
.footer-cta { margin-bottom: 40px; }
.footer-cta .btn { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; padding: 14px 32px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease; border: none; cursor: pointer; }
.footer-cta .btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,139,142,0.3); }
.footer-cta .btn svg { width: 18px; height: 18px; }
.footer-nav-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-nav-row a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5); transition: color 0.3s ease; letter-spacing: 0.3px; }
.footer-nav-row a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 16px; }
.footer-bottom a { color: rgba(255,255,255,0.25); transition: color 0.3s ease; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* WhatsApp Float */
.wa-float-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
.wa-float-link { text-decoration: none; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.wa-bubble { position: relative; display: flex; align-items: center; gap: 10px; background: var(--bg-card, #fff); border: 1px solid var(--border-color, rgba(0,0,0,0.08)); border-radius: 20px 20px 4px 20px; padding: 6px 14px 6px 6px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); margin-right: 50px; opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease; pointer-events: none; }
.wa-bubble.wa-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wa-float-link:hover .wa-bubble.wa-visible { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.wa-bubble-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; object-position: center top; flex-shrink: 0; }
.wa-bubble-text { color: var(--text-body, #555); font-size: 13px; font-weight: 400; font-family: 'Inter', sans-serif; font-style: normal; line-height: 1.4; letter-spacing: 0.01em; white-space: nowrap; }
.wa-icon-circle { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E, #075E54); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(37,211,102,0.4); transition: transform 0.3s ease; }
.wa-float-link:hover .wa-icon-circle { transform: scale(1.05); }
.wa-icon-circle svg { width: 28px; height: 28px; fill: white; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-silk), transform 0.8s var(--ease-silk); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }

/* ===== HERO COCCARDA BADGE ===== */
.hero-coccarda { position: absolute; left: 100px; margin-top: -120px; z-index: 10; pointer-events: none; }
.hero-coccarda img { width: 300px; height: 300px; object-fit: contain; filter: none; border-radius: 0; box-shadow: none; }

/* ===== SPLIT SECTION ===== */
.split-section { display: flex; width: 100%; height: 75vh; min-height: 520px; position: relative; overflow: hidden; }
.split-panel { position: relative; flex: 1; overflow: hidden; cursor: pointer; transition: flex 0.8s var(--ease); display: block; }
.split-panel-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s var(--ease); }
.split-panel:hover .split-panel-bg { transform: scale(1.05); }
.split-panel-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); transition: background 0.8s var(--ease); }
.split-panel-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; padding: 48px 40px; text-align: center; color: #fff; }
.split-icon { width: 56px; height: 56px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: border-color 0.5s var(--ease), background 0.5s var(--ease); }
.split-panel:hover .split-icon { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }
.split-icon svg { width: 24px; height: 24px; color: #fff; }
.split-label { font-family: var(--font-body); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; opacity: 0.6; margin-bottom: 14px; }
.split-panel-content h2 { font-size: clamp(30px, 4.5vw, 48px); font-weight: 400; color: #fff; margin-bottom: 14px; }
.split-panel-content p { font-size: 15px; color: rgba(255,255,255,0.78); max-width: 340px; line-height: 1.7; margin-bottom: 28px; }
.split-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.3px; color: #fff; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); padding: 12px 28px; border-radius: var(--radius-full); opacity: 0; transform: translateY(10px); transition: opacity 0.5s var(--ease) 0.12s, transform 0.5s var(--ease) 0.12s, background 0.3s ease, border-color 0.3s ease; }
.split-panel:hover .split-btn { opacity: 1; transform: translateY(0); }
.split-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.split-btn svg { width: 16px; height: 16px; }
.split-divider { position: absolute; top: 12%; bottom: 12%; left: 50%; width: 1px; background: rgba(255,255,255,0.2); z-index: 5; transform: translateX(-50%); transition: opacity 0.5s var(--ease); pointer-events: none; }
.split-section:hover .split-panel { flex: 0.82; }
.split-section:hover .split-panel:hover { flex: 1.18; }
.split-section:hover .split-panel:not(:hover) .split-panel-overlay { background: rgba(0,0,0,0.6); }
.split-section:hover .split-divider { opacity: 0; }

/* ===== DATES TIMELINE ===== */
.dates-timeline { display: flex; align-items: stretch; justify-content: center; gap: 0; max-width: 900px; margin: 0 auto; }
.date-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 36px 28px; background: var(--bg-card); border: 2px solid var(--border-light); border-radius: var(--radius-xl); transition: border-color 0.4s ease, box-shadow 0.5s var(--ease), transform 0.5s var(--ease); position: relative; }
.date-step:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.date-step.active { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft), var(--shadow-lg); }
.date-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: var(--radius-full); letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }
.date-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--primary-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.date-icon svg { width: 28px; height: 28px; color: var(--primary); }
.date-info h3 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 6px; color: var(--text-dark); }
.date-info p { font-size: 15px; color: var(--text-body); margin-bottom: 8px; }
.date-detail { font-size: 12px; color: var(--text-muted); letter-spacing: 0.3px; }
.date-connector { display: flex; align-items: center; justify-content: center; width: 80px; flex-shrink: 0; }
.connector-line { flex: 1; height: 2px; background: var(--border-color); }
.connector-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--primary); flex-shrink: 0; box-shadow: 0 0 0 4px var(--primary-soft); }

/* Responsive */
@media (max-width: 1024px) {
  .content-block { grid-template-columns: 1fr; gap: 40px; }
  .content-block.reverse { direction: ltr; }
  .audience-grid { grid-template-columns: 1fr !important; }
  .nav-menu, .header-cta-desktop { display: none; }
  .menu-toggle { display: block; }
}
@media (max-width: 768px) {
  /* Layout */
  .section { padding: 56px 18px !important; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(22px, 5.5vw, 30px); }
  .section-header p { font-size: 15px; }
  .container { padding: 0; }

  /* Override inline font-size on paragraphs */
  .container p[style*="font-size:18px"] { font-size: 15px !important; }

  /* Header & Nav */
  .header-inner { padding: 0 16px; height: 60px; }
  .logo img { height: 34px; }
  .mobile-menu { top: 94px; padding: 14px 18px; gap: 2px; }
  .mobile-menu a { font-size: 15px; padding: 12px 0; }
  .mobile-menu .btn { color: #fff !important; text-align: center; }
  .urgency-banner { font-size: 12px; padding: 8px 12px; line-height: 1.4; }
  .header { top: 34px; }

  /* Hero */
  .page-hero { min-height: 280px; aspect-ratio: 47/20; margin-top: 96px; }
  .page-hero-content { padding: 40px 20px; }
  .page-hero-content h1 { font-size: clamp(26px, 7vw, 34px); margin-bottom: 12px; }
  .page-hero-content p { font-size: 15px; line-height: 1.7; }
  .page-hero-badge { font-size: 12px; padding: 5px 14px; }

  /* Coccarda */
  .hero-coccarda { position: relative; left: auto; margin-top: -30px; text-align: center; }
  .hero-coccarda img { width: 150px; height: 150px; margin: 0 auto; filter: none; }

  /* Seconda sezione: meno margin-top negativo */
  main > .section:first-child { margin-top: -100px !important; }

  /* Split section */
  .split-section { flex-direction: column; height: auto; min-height: auto; }
  .split-panel { min-height: 50vh; }
  .split-panel-content { padding: 40px 24px; }
  .split-panel-content h2 { font-size: clamp(24px, 6vw, 32px); }
  .split-panel-content p { font-size: 14px; }
  .split-divider { display: none; }
  .split-section:hover .split-panel { flex: 1; }
  .split-section:hover .split-panel:hover { flex: 1; }
  .split-btn { opacity: 1; transform: translateY(0); }

  /* Dates timeline */
  .dates-timeline { flex-direction: column; gap: 20px; }
  .date-connector { width: auto; height: 40px; flex-direction: column; }
  .connector-line { width: 2px; height: 100%; flex: 1; }
  .date-step { padding: 28px 22px; }
  .date-info h3 { font-size: 22px; }

  /* Content blocks */
  .content-block { gap: 28px; margin-bottom: 48px; }
  .content-block img { border-radius: var(--radius-lg); object-fit: contain !important; max-height: none !important; }
  .content-text h2 { font-size: 22px; }
  .content-text p { font-size: 14px; line-height: 1.75; }

  /* Feature list */
  .feature-item { font-size: 14px; gap: 10px; }
  .feature-item-icon { width: 26px; height: 26px; }
  .feature-item-icon svg { width: 13px; height: 13px; }

  /* Timeline — tighter on mobile */
  .timeline { padding-left: 40px; }
  .timeline::before { left: 12px; }
  .timeline-progress { left: 12px; }
  .timeline-dot { left: -40px; width: 28px; height: 28px; font-size: 11px; }
  .timeline-item { margin-bottom: 28px; }
  .timeline-card { padding: 20px 18px 18px; border-radius: var(--radius-md); }
  .timeline-card-inner { flex-direction: row; gap: 14px; align-items: center; }
  .timeline-card-img { width: 56px; height: 56px; min-width: 56px; max-height: none; aspect-ratio: 1/1; border-radius: var(--radius-md); object-fit: contain; animation: none !important; }
  .timeline-card-label { font-size: 10px; letter-spacing: 1.2px; }
  .timeline-card h4 { font-size: 17px; margin-bottom: 8px; }
  .timeline-card p { font-size: 13px; line-height: 1.75; }

  /* Chakra detail boxes */
  .chakra-detail-grid { grid-template-columns: 1fr; gap: 10px; }
  .chakra-detail-box { padding: 14px; font-size: 13px; }
  .chakra-detail-box h5 { font-size: 13px; }

  /* Trust badges — 2-col grid */
  .trust-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-badge { min-width: unset; padding: 18px 12px; }
  .trust-badge .number { font-size: 28px; }
  .trust-badge .label { font-size: 13px; }

  /* Audience & card grids */
  .audience-card { padding: 24px 18px; gap: 14px; border-radius: var(--radius-lg); }
  .audience-card h4 { font-size: 15px; }
  .audience-card p { font-size: 13px; }
  .audience-icon { width: 44px; height: 44px; }
  .audience-icon svg { width: 20px; height: 20px; }

  /* Override inline 3-col grids to 1-col */
  .audience-grid[style*="repeat(3"] { grid-template-columns: 1fr !important; }

  /* Chakra images in audience cards — inline style override */
  .audience-card img[style*="width:80px"] { width: 72px !important; height: 72px !important; object-fit: contain !important; }
  .audience-card img[style*="width:120px"] { width: 90px !important; height: 90px !important; object-fit: contain !important; }

  /* Video */
  .video-wrapper { border-radius: var(--radius-lg); }
  .video-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
  .video-card { border-radius: var(--radius-md); }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card { padding: 32px 22px; border-radius: var(--radius-xl); }
  .price-card h3 { font-size: 20px; }
  .price-amount { font-size: 44px; }
  .price-amount span { font-size: 20px; }
  .price-period { font-size: 13px; }
  .price-features li { font-size: 14px; padding: 10px 0; gap: 10px; }
  .guarantee-box { padding: 22px 18px; margin-top: 24px; }
  .guarantee-box p { font-size: 14px; }

  /* FAQ */
  .faq-question { padding: 16px 16px; }
  .faq-question h4 { font-size: 15px; }
  .faq-answer { font-size: 14px; padding: 0 16px 0; }
  .faq-item.active .faq-answer { padding-bottom: 16px; }

  /* Heart text */
  .heart-text { font-size: 16px; padding: 20px 18px; }

  /* CTA */
  .cta-section { padding: 36px 22px; border-radius: var(--radius-xl); }
  .cta-section h2 { font-size: clamp(20px, 5.5vw, 26px); }
  .cta-section p { font-size: 15px; margin-bottom: 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-reassurance { font-size: 12px; line-height: 1.6; }

  /* Social buttons row */
  .section[style*="text-align:center"] [style*="display:flex"][style*="gap:16px"] { flex-direction: column !important; align-items: center !important; }

  /* Footer */
  .footer { padding: 48px 18px 24px; }
  .footer-logo img { height: 40px; }
  .footer-tagline { font-size: 14px; margin-bottom: 24px; }
  .footer-nav-row { gap: 12px 20px; padding-bottom: 24px; margin-bottom: 24px; }
  .footer-nav-row a { font-size: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom span { font-size: 11px; }

  /* Footer newsletter form */
  .footer form[style] { flex-direction: column !important; max-width: 100% !important; }
  .footer form input,
  .footer form button { min-width: unset !important; width: 100% !important; }

  /* Spots counter */
  .spots-counter { font-size: 13px; }

  /* Hero BG static on mobile */
  .page-hero-bg { transform: none !important; }

  /* Move pricing after dates timeline on mobile */
  main { display: flex; flex-direction: column; }
  main > *:nth-child(n+3) { order: 2; }
  main > #acquista { order: 1; }

  /* WhatsApp float */
  .wa-float-wrap { bottom: 16px; right: 12px; }
  .wa-bubble { padding: 7px 14px; border-radius: 16px 16px 4px 16px; margin-right: 0; }
  .wa-bubble-text { font-size: 12px; }
  .wa-icon-circle { width: 48px; height: 48px; }
  .wa-icon-circle svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 40px 14px !important; }

  /* Header & Hero */
  .urgency-banner { font-size: 10px; padding: 6px 10px; line-height: 1.5; }
  .header { top: 28px; }
  .header-inner { height: 56px; }
  .logo img { height: 30px; }
  .mobile-menu { top: 84px; padding: 12px 16px; }
  .page-hero { min-height: 220px; aspect-ratio: auto; margin-top: 84px; }
  .page-hero-content { padding: 32px 16px; }
  .page-hero-content h1 { font-size: clamp(22px, 6.5vw, 28px); }
  .page-hero-content p { font-size: 14px; }
  .page-hero-badge { font-size: 11px; padding: 4px 12px; }

  /* Coccarda */
  .hero-coccarda { position: relative; left: -100px; margin-top: -50px; text-align: center; }
  .hero-coccarda img { width: 190px; height: 190px; margin: 0 auto; filter: none; }

  /* Seconda sezione: meno margin-top negativo */
  main > .section:first-child { margin-top: -60px !important; }

  /* Split section */
  .split-panel { min-height: 40vh; }
  .split-panel-content { padding: 32px 18px; }
  .split-panel-content h2 { font-size: 24px; }
  .split-label { font-size: 10px; letter-spacing: 2px; }

  /* Dates timeline */
  .date-step { padding: 24px 16px; }
  .date-info h3 { font-size: 20px; }
  .date-info p { font-size: 14px; }
  .date-connector { height: 30px; }

  /* Content */
  .content-block { gap: 20px; margin-bottom: 36px; }
  .content-text h2 { font-size: 20px; }

  /* Timeline */
  .timeline { padding-left: 34px; }
  .timeline::before { left: 10px; }
  .timeline-progress { left: 10px; }
  .timeline-dot { left: -34px; width: 24px; height: 24px; font-size: 10px; }
  .timeline-item { margin-bottom: 20px; }
  .timeline-card { padding: 16px 14px 14px; }
  .timeline-card h4 { font-size: 16px; }
  .timeline-card p { font-size: 12.5px; }
  .timeline-card-img { max-height: none; width: 48px; height: 48px; min-width: 48px; }

  /* Chakra detail boxes */
  .chakra-detail-box { padding: 12px; font-size: 12.5px; }
  .chakra-detail-box h5 { font-size: 12px; }

  /* Trust badges */
  .trust-badges { gap: 8px; }
  .trust-badge { padding: 14px 10px; }
  .trust-badge .number { font-size: 22px; }
  .trust-badge .label { font-size: 11px; }

  /* Price */
  .price-card { padding: 28px 18px; }
  .price-card h3 { font-size: 18px; }
  .price-amount { font-size: 38px; }
  .price-features li { font-size: 13px; }

  /* CTA */
  .cta-section { padding: 28px 16px; }
  .cta-section h2 { font-size: 20px; }
  .cta-buttons .btn { max-width: 280px; font-size: 14px; padding: 12px 24px; }

  /* Heart text */
  .heart-text { font-size: 14px; padding: 16px 14px; }

  /* Spots counter */
  .spots-counter { font-size: 11px; padding: 6px 12px; }
}
