/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blue: #2699f4;
  --green: #05813c;
  --black: #0a0a0a;
  --white: #ffffff;
  --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--white); background: #122d16; overflow-x: hidden; }
::selection { background: var(--blue); color: var(--white); }
/* ===== NAV ===== */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 2.5rem; background: transparent; }
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 28px; width: auto; }
.nav-cta { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 500; color: var(--white); text-decoration: none; padding: 0.6rem 1.5rem; border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; transition: all 0.3s ease; letter-spacing: 0.02em; }
.nav-cta:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-1px); }
/* ===== VIDEO TRACK ===== */
#video-track { position: relative; height: 875vh; }
#video-sticky { position: sticky; top: 0; width: 100%; height: 100vh; overflow: hidden; }
#scene { position: absolute; top: 0; left: 0; width: 100%; height: 100%; will-change: contents; }
/* ===== OVERLAYS ===== */
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; padding: 2rem; padding-bottom: 14vh; text-align: center; background: radial-gradient(ellipse 80% 60% at 50% 45%, rgba(0,0,0,0.35) 0%, transparent 100%); }
#problema-overlay { padding-bottom: 0; }
#guida-overlay,
#piano-overlay,
#successo-overlay,
#fallimento-overlay { padding-bottom: 28vh; }
.overlay.active { pointer-events: auto; }
/* ===== 3D TEXT ===== */
.hero-title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 7rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.04em; color: var(--white); text-shadow: 0 1px 0 rgba(255,255,255,0.4), 0 2px 0 rgba(200,200,200,0.15), 0 3px 0 rgba(150,150,150,0.1), 0 4px 0 rgba(100,100,100,0.08), 0 5px 0 rgba(50,50,50,0.06), 0 6px 10px rgba(0,0,0,0.4), 0 12px 40px rgba(0,0,0,0.3), 0 20px 80px rgba(0,0,0,0.2); margin-bottom: 1.5rem; text-wrap: balance; }
.hero-sub { font-family: var(--font-body); font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 300; color: rgba(255,255,255,0.7); letter-spacing: 0.02em; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.section-label { font-family: var(--font-heading); font-size: clamp(4rem, 12vw, 10rem); font-weight: 800; letter-spacing: -0.05em; color: rgba(255,255,255,0.08); position: absolute; top: 12%; text-shadow: 0 0 60px rgba(38, 153, 244, 0.15), 0 0 120px rgba(38, 153, 244, 0.05); }
.section-title { font-family: var(--font-heading); font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: var(--white); text-shadow: 0 0 20px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.4), 0 2px 0 rgba(200,200,200,0.15), 0 3px 0 rgba(150,150,150,0.1), 0 4px 0 rgba(100,100,100,0.08), 0 5px 0 rgba(50,50,50,0.06), 0 6px 10px rgba(0,0,0,0.4), 0 12px 40px rgba(0,0,0,0.3), 0 20px 80px rgba(0,0,0,0.2); margin-bottom: 1.25rem; max-width: 900px; text-wrap: balance; }
.accent { color: var(--blue); text-shadow: 0 0 20px rgba(0,0,0,0.5), 0 0 40px rgba(0,0,0,0.3), 0 1px 0 rgba(38,153,244,0.5), 0 2px 0 rgba(30,120,200,0.2), 0 3px 0 rgba(20,90,170,0.1), 0 6px 12px rgba(38,153,244,0.2), 0 15px 50px rgba(38,153,244,0.15); }
.section-body { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 400; line-height: 1.7; color: rgba(255,255,255,0.9); max-width: 650px; text-shadow: 0 0 15px rgba(0,0,0,0.7), 0 0 30px rgba(0,0,0,0.5), 0 2px 15px rgba(0,0,0,0.5); text-wrap: pretty; }
.section-body strong { color: var(--white); font-weight: 500; }
/* ===== CTA HERO ===== */
.cta-hero {
  display: inline-block; margin-top: 2rem;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  color: var(--white); text-decoration: none;
  padding: 0.9rem 2.5rem;
  background: var(--blue); border-radius: 100px;
  transition: all 0.3s ease; letter-spacing: 0.02em;
}
.cta-hero:hover { background: #1a85e0; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(38, 153, 244, 0.3); }

/* ===== QUOTE ROTATOR (Problema section) ===== */
.quote-rotator {
  position: relative; max-width: 700px; width: 100%; min-height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.rotating-quote {
  position: absolute; top: 0; left: 0; width: 100%;
  font-family: var(--font-body); font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 400; font-style: italic; line-height: 1.6;
  color: rgba(255,255,255,0.9); text-align: center;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
  opacity: 0; transition: opacity 0.4s;
  border: none; margin: 0; padding: 0;
  white-space: nowrap;
}
.rotating-quote.visible { opacity: 1; }
.quote-punch {
  display: block; margin-top: 0.5rem;
  font-size: 1.1em; font-weight: 600; font-style: normal; color: var(--white);
  text-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 3px 8px rgba(0,0,0,0.3), 0 8px 25px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.quote-dots {
  display: flex; gap: 8px; margin-top: 1rem;
}
.quote-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); transition: all 0.3s;
}
.quote-dot.active { background: var(--blue); transform: scale(1.3); }

/* ===== GUIDA ===== */
.about-logo-big { height: clamp(40px, 6vw, 65px); margin-bottom: 1.5rem; }
.guida-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.04em;
  color: var(--white); text-align: center; margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.4), 0 2px 0 rgba(200,200,200,0.15), 0 3px 0 rgba(150,150,150,0.1), 0 4px 0 rgba(100,100,100,0.08), 0 5px 0 rgba(50,50,50,0.06), 0 6px 10px rgba(0,0,0,0.4), 0 12px 40px rgba(0,0,0,0.3), 0 20px 80px rgba(0,0,0,0.2);
  text-wrap: balance;
}
.guida-sub {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 400;
  color: rgba(255,255,255,0.7); margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.guida-tagline {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.guida-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.2); }

@media (max-width: 768px) {
  .guida-tagline { flex-direction: column; gap: 0.75rem; text-align: center; }
  .guida-divider { width: 40px; height: 1px; }
}

/* ===== IMPACT BOX (Successo / Fallimento) ===== */
.impact-box {
  max-width: 700px; width: 100%; text-align: center;
  padding: 3rem 2.5rem; border-radius: 20px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
}
.impact-box-dark { background: rgba(0,0,0,0.65); }
.impact-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.impact-body {
  font-size: clamp(1rem, 1.8vw, 1.3rem); font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.impact-punch {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--white); line-height: 1.3;
  text-shadow: 0 0 20px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.3), 0 4px 8px rgba(0,0,0,0.3), 0 10px 30px rgba(0,0,0,0.2);
  text-wrap: balance;
}
.impact-mega {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800; color: var(--blue); letter-spacing: 0.05em;
  margin-top: 0.5rem;
  text-shadow: 0 0 20px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.4), 0 1px 0 rgba(38,153,244,0.5), 0 2px 0 rgba(30,120,200,0.2), 0 3px 0 rgba(20,90,170,0.1), 0 6px 12px rgba(38,153,244,0.3), 0 15px 50px rgba(38,153,244,0.2);
}

@media (max-width: 768px) {
  .impact-box { padding: 2rem 1.5rem; border-radius: 16px; }
}

/* ===== RESULT LIST ===== */
.result-list {
  list-style: none; margin: 0 0 2rem 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.result-list li {
  font-family: var(--font-heading); font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 600; color: var(--white); text-align: left;
  display: flex; align-items: center; gap: 0.75rem;
  text-shadow: 0 0 15px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
}
.result-check {
  color: var(--green); font-size: 1.3em; flex-shrink: 0;
  text-shadow: 0 0 12px rgba(5,129,60,0.5);
}
/* ===== SCROLL HINT ===== */
.scroll-hint { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; animation: bounce 2.5s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
/* ===== ARROW CANVAS ===== */
#arrow-canvas { position: absolute; bottom: 5%; left: 50%; transform: translateX(-50%); width: min(650px, 90vw); height: 220px; pointer-events: none; }
/* ===== STEPS ROW ===== */
.steps-row { display: flex; align-items: flex-start; gap: 0; max-width: 850px; margin-top: 2.5rem; }
.step-item { flex: 1; text-align: center; padding: 0 1.5rem; }
.step-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--blue); display: block; margin-bottom: 0.5rem; }
.step-item h3 { font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; color: var(--white); text-shadow: 0 1px 0 rgba(255,255,255,0.2), 0 3px 8px rgba(0,0,0,0.3), 0 8px 25px rgba(0,0,0,0.2); margin-bottom: 0.4rem; }
.step-item p { font-size: clamp(0.8rem, 1.1vw, 0.9rem); font-weight: 400; line-height: 1.5; color: rgba(255,255,255,0.8); text-shadow: 0 0 15px rgba(0,0,0,0.6), 0 2px 10px rgba(0,0,0,0.4); }
.step-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.12); flex-shrink: 0; margin-top: 1.5rem; }
/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 750px; width: 100%; margin-top: 2rem; }
.service-card { padding: 1.5rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; background: rgba(255,255,255,0.03); text-align: left; transition: border-color 0.3s, transform 0.3s; }
.service-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.service-card h3 { font-family: var(--font-heading); font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 700; color: var(--white); margin-bottom: 0.5rem; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.service-card p { font-size: clamp(0.8rem, 1.1vw, 0.9rem); font-weight: 300; line-height: 1.5; color: rgba(255,255,255,0.55); }
.service-link { display: inline-block; margin-top: 0.75rem; font-size: 0.85rem; font-weight: 500; color: var(--blue); text-decoration: none; transition: opacity 0.3s; }
.service-link:hover { opacity: 0.7; }
/* ===== NUMBERS ROW ===== */
.numbers-row { display: flex; align-items: flex-start; justify-content: center; gap: clamp(2rem, 4vw, 4rem); margin-top: 2rem; max-width: 800px; }
.number-item { text-align: center; }
.number-value { font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; display: block; line-height: 1; text-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 3px 8px rgba(0,0,0,0.3), 0 10px 30px rgba(0,0,0,0.2); }
.number-label { font-size: clamp(0.7rem, 1vw, 0.85rem); font-weight: 300; color: rgba(255,255,255,0.5); display: block; margin-top: 0.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
/* ===== TESTIMONIAL ===== */
.testimonial-quote { font-family: var(--font-body); font-size: clamp(1.3rem, 3vw, 2.2rem); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--white); max-width: 700px; text-align: center; text-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 10px 30px rgba(0,0,0,0.15); border: none; margin: 0; padding: 0; }
.testimonial-attr { font-size: clamp(0.85rem, 1.2vw, 1rem); font-weight: 400; color: rgba(255,255,255,0.45); margin-top: 1.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
/* ===== ABOUT ===== */
.about-logo { height: clamp(35px, 5vw, 55px); width: auto; margin-bottom: 0.75rem; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3)); }
.about-years { font-family: var(--font-body); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 400; color: rgba(255,255,255,0.7); margin-bottom: 1rem; text-shadow: 0 2px 15px rgba(0,0,0,0.4); }
.about-body { max-width: 550px; margin-bottom: 2.5rem; }
.pillars-row { display: flex; align-items: center; gap: 0; max-width: 800px; }
.pillar-item { flex: 1; text-align: center; padding: 0 1.5rem; }
.pillar-item h3 { font-family: var(--font-heading); font-size: clamp(1rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: -0.01em; color: var(--white); text-shadow: 0 1px 0 rgba(255,255,255,0.2), 0 3px 8px rgba(0,0,0,0.3), 0 8px 25px rgba(0,0,0,0.2); text-transform: uppercase; }
.pillar-item p { font-size: clamp(0.8rem, 1.2vw, 0.95rem); font-weight: 300; line-height: 1.5; color: rgba(255,255,255,0.5); margin-top: 0.6rem; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.pillar-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
/* ===== CONTACT ===== */
#contact { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 8rem 2rem; background: #122d16; }
#contact::before { content: ''; position: absolute; top: -120px; left: 0; right: 0; height: 120px; background: linear-gradient(transparent, #122d16); pointer-events: none; }
.contact-wrapper { max-width: 700px; width: 100%; }
.contact-logo { height: 40px; width: auto; opacity: 0.5; margin-bottom: 1.5rem; }
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-header h2 { font-family: var(--font-heading); font-size: clamp(3.5rem, 8vw, 6.5rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 1.25rem; text-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 2px 0 rgba(200,200,200,0.12), 0 3px 0 rgba(150,150,150,0.08), 0 4px 0 rgba(100,100,100,0.05), 0 6px 12px rgba(0,0,0,0.3), 0 15px 40px rgba(0,0,0,0.2); }
.contact-header .section-body { text-shadow: none; color: rgba(255,255,255,0.5); font-size: clamp(1.1rem, 2vw, 1.4rem); }
.form-group { position: relative; margin-bottom: 2.25rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1.25rem 0; font-family: var(--font-body); font-size: 1.15rem; color: var(--white); background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.15); outline: none; transition: border-color 0.3s; resize: none; }
.form-group textarea { min-height: 120px; }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--blue); }
.form-group label { position: absolute; top: 1.25rem; left: 0; font-size: 1.15rem; font-weight: 300; color: rgba(255,255,255,0.4); pointer-events: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.form-group input:focus ~ label, .form-group input:not(:placeholder-shown) ~ label, .form-group textarea:focus ~ label, .form-group textarea:not(:placeholder-shown) ~ label { top: -0.8rem; font-size: 0.8rem; color: var(--blue); }
.btn-submit { display: inline-flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; padding: 1.1rem 3.5rem; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--white); background: var(--blue); border: none; border-radius: 100px; cursor: pointer; transition: all 0.3s ease; letter-spacing: 0.02em; }
.btn-submit:hover { background: #1a85e0; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(38, 153, 244, 0.3); }
.btn-submit svg { transition: transform 0.3s; }
.btn-submit:hover svg { transform: translateX(4px); }
/* ===== FOOTER ===== */
footer { padding: 2rem; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); background: #122d16; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-logo { height: 24px; width: auto; opacity: 0.5; margin-bottom: 0.75rem; display: block; margin-left: auto; margin-right: auto; }
.footer-legal { margin-top: 0.6rem; font-size: 0.7rem; color: rgba(255,255,255,0.2); letter-spacing: 0.01em; }
/* ===== CONTACT REVEAL ===== */
#contact .contact-wrapper { opacity: 0; transform: translateY(60px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
#contact.visible .contact-wrapper { opacity: 1; transform: translateY(0); }
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #nav { padding: 1rem 1.5rem; }
  .nav-logo img { height: 22px; }
  .nav-cta { font-size: 0.8rem; padding: 0.5rem 1.2rem; }
  .overlay { padding: 1.5rem; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .section-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .section-body { font-size: 0.95rem; }
  .pillars-row { flex-direction: column; gap: 1.5rem; }
  .pillar-divider { width: 40px; height: 1px; }
  .pillar-item { padding: 0; }
  .steps-row { flex-direction: column; gap: 1.5rem; }
  .step-divider { width: 40px; height: 1px; margin-top: 0; }
  .step-item { padding: 0; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .numbers-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  #arrow-canvas { width: 80vw; height: 140px; bottom: 6%; }
  .scroll-hint { bottom: 2rem; }
  #contact { padding: 4rem 1.5rem; }
  .about-logo { height: 30px; }
  .rotating-quote { white-space: normal; font-size: clamp(1rem, 4vw, 1.3rem); text-align: center; }
  .quote-punch { white-space: normal; }
  .quote-rotator { min-height: 220px; }
  #guida-overlay,
  #piano-overlay,
  #successo-overlay,
  #fallimento-overlay { padding-bottom: 22vh; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }
  .hero-sub { font-size: 1rem; }
  .pillar-item h3 { font-size: 0.95rem; }
}
/* ===== GRAIN ===== */
#video-sticky::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.025; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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='1'/%3E%3C/svg%3E"); background-size: 200px; }
@supports (-webkit-overflow-scrolling: touch) { html { -webkit-overflow-scrolling: touch; } }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 300px;
  background: rgba(18, 18, 28, 0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.1rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 9999;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: cookieFadeIn 0.4s ease;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
#cookie-decline {
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  transition: color 0.2s;
}
#cookie-decline:hover { color: rgba(255,255,255,0.7); }
#cookie-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  margin: 0;
  line-height: 1.55;
  padding-right: 1rem;
}
#cookie-banner p a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}
#cookie-accept {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.45rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}
#cookie-accept:hover { opacity: 0.85; }
@media (max-width: 480px) {
  #cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 14px 14px 0 0;
    border-bottom: none;
  }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 0.7rem 1.1rem 0.7rem 0.8rem;
  z-index: 100000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}
.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75); }
}
