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

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

:root {
  --verde:   #1B3A2D;
  --verde-m: #264D3C;
  --verde-l: #3A6B54;
  --oro:     #C4962A;
  --oro-l:   #E8B84B;
  --bianco:  #FAF8F4;
  --grigio:  #F0EDE8;
  --testo:   #1A1A18;
  --testo-m: #4A4A47;
  --testo-l: #8A8A87;
  --raggio:  4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bianco);
  color: var(--testo);
  font-size: 16px;
  line-height: 1.6;
}

/* ---- TIPOGRAFIA ---- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oro);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.6rem;
  display: block;
}

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: var(--verde);
  box-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-logo-img {
  height: 72px;
  width: 72px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(250,248,244,0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--bianco); }
.nav-cta {
  background: var(--oro);
  color: var(--verde);
  border: none;
  padding: 0.6rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--raggio);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--oro-l); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bianco);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--verde);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(196,150,42,0.08) 0%, transparent 60%),
              linear-gradient(160deg, #0E2219 0%, #1B3A2D 50%, #152D22 100%);
}
.hero-cypress {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 90%;
  opacity: 0.12;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero h1 { color: var(--bianco); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--oro-l); }
.hero-sub {
  color: rgba(250,248,244,0.6);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--raggio);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-oro { background: var(--oro); color: var(--verde); font-weight: 600; }
.btn-oro:hover { background: var(--oro-l); }
.btn-outline {
  background: transparent;
  color: rgba(250,248,244,0.8);
  border: 1px solid rgba(250,248,244,0.25);
}
.btn-outline:hover { border-color: rgba(250,248,244,0.5); color: var(--bianco); }
.btn-verde { background: var(--verde); color: var(--bianco); }
.btn-verde:hover { background: var(--verde-m); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(250,248,244,0.35);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 3rem;
  background: rgba(250,248,244,0.2);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--verde);
  border-top: 1px solid rgba(250,248,244,0.08);
  padding: 1.5rem 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(250,248,244,0.65);
  font-size: 0.82rem;
  font-weight: 400;
}
.trust-item strong { color: var(--oro-l); font-weight: 600; font-size: 0.95rem; }

/* ---- SERVIZI ---- */
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  margin-top: 3.5rem;
  background: var(--grigio);
  border: 1.5px solid var(--grigio);
}
.servizio-card {
  background: var(--bianco);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.servizio-card:hover { background: var(--verde); }
.servizio-card:hover .servizio-titolo { color: var(--bianco); }
.servizio-card:hover .servizio-desc { color: rgba(250,248,244,0.6); }
.servizio-card:hover .servizio-num { color: rgba(250,248,244,0.08); }
.servizio-card:hover .servizio-link { color: var(--oro-l); }
.servizio-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 400;
  color: rgba(26,58,45,0.06);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  transition: color 0.25s;
}
.servizio-icona { font-size: 2rem; margin-bottom: 1.25rem; }
.servizio-titolo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--verde);
  transition: color 0.25s;
}
.servizio-desc {
  font-size: 0.875rem;
  color: var(--testo-m);
  line-height: 1.7;
  transition: color 0.25s;
  margin-bottom: 1.25rem;
}
.servizio-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oro);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

/* ---- PERCHÉ NOI ---- */
.perche { background: var(--grigio); }
.perche-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.perche-visual {
  position: relative;
  height: 480px;
  background: var(--verde);
  border-radius: var(--raggio);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.perche-visual svg { opacity: 0.2; position: absolute; inset: 0; width: 100%; height: 100%; }
.perche-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2rem;
  width: 100%;
}
.perche-stat {
  background: rgba(250,248,244,0.05);
  padding: 1.5rem;
  text-align: center;
}
.perche-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--oro-l);
  line-height: 1;
  display: block;
}
.perche-stat-label {
  font-size: 0.75rem;
  color: rgba(250,248,244,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  display: block;
}
.punti { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.punto {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26,58,45,0.08);
}
.punto:last-child { border-bottom: none; }
.punto-icona {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(196,150,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.punto h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--verde);
  margin-bottom: 0.25rem;
}
.punto p { font-size: 0.85rem; color: var(--testo-m); line-height: 1.6; }

/* ---- ZONE ---- */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: var(--grigio);
  border: 1px solid var(--grigio);
}
.zona {
  background: var(--bianco);
  padding: 1.75rem 1.5rem;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.zona:hover { border-bottom-color: var(--oro); background: #FEFCF8; }
.zona-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--verde);
  margin-bottom: 0.3rem;
}
.zona-desc { font-size: 0.8rem; color: var(--testo-l); }

/* ---- PREVENTIVO ---- */
.preventivo { background: var(--verde); }
.preventivo h2 { color: var(--bianco); }
.preventivo .eyebrow { color: var(--oro-l); }
.preventivo-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.preventivo-info p { color: rgba(250,248,244,0.6); font-size: 0.95rem; line-height: 1.8; margin-top: 1.25rem; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  padding: 0.9rem 1.75rem;
  border-radius: var(--raggio);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 2rem;
  transition: background 0.2s;
}
.whatsapp-btn:hover { background: #20ba5a; }
.form-card {
  background: var(--bianco);
  border-radius: var(--raggio);
  padding: 2.5rem;
}
.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--verde);
  margin-bottom: 1.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid.full { grid-template-columns: 1fr; }
.campo { display: flex; flex-direction: column; gap: 0.4rem; }
.campo.span2 { grid-column: span 2; }
.campo label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--testo-m);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.campo input,
.campo select,
.campo textarea {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(26,58,45,0.15);
  border-radius: var(--raggio);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--testo);
  background: var(--bianco);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.campo input:focus,
.campo select:focus,
.campo textarea:focus { border-color: var(--verde); }
.campo textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--oro);
  color: var(--verde);
  border: none;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--raggio);
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.form-submit:hover { background: var(--oro-l); }
.form-nota { font-size: 0.75rem; color: var(--testo-l); text-align: center; margin-top: 0.75rem; }

/* ---- TESTIMONIANZE ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--grigio);
  padding: 2rem;
  border-radius: var(--raggio);
  border-left: 3px solid var(--oro);
}
.testimonial-testo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--testo);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-autore { font-size: 0.8rem; color: var(--testo-l); font-weight: 500; }
.stelle { color: var(--oro); margin-bottom: 0.5rem; font-size: 0.85rem; }

/* ---- FOOTER ---- */
footer {
  background: #0E2219;
  color: rgba(250,248,244,0.55);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,248,244,0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--bianco);
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--oro-l); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; max-width: 30ch; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oro-l);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  color: rgba(250,248,244,0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--bianco); }
.footer-contatto-item { display: flex; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.6rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(196,150,42,0.15);
  color: var(--oro-l);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ---- HERO OVERLAY ---- */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,15,30,0.82) 0%, rgba(27,58,45,0.75) 50%, rgba(10,15,30,0.7) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-scroll { z-index: 2; }

/* ---- CHI SIAMO ---- */
.chi-siamo { background: var(--grigio); }
.chi-siamo-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.chi-siamo-foto {
  position: relative;
}
.foto-titolare {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--raggio);
  display: block;
}
.chi-siamo-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--verde);
  border-radius: var(--raggio);
  padding: 1.25rem 1.5rem;
  text-align: center;
  border: 3px solid var(--oro);
}
.chi-badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--oro-l);
  line-height: 1;
}
.chi-badge-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(250,248,244,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.chi-siamo-testo p { color: var(--testo-m); line-height: 1.8; font-size: 0.95rem; }
.chi-siamo-valori {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26,58,45,0.1);
}
.valore {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--verde);
  font-weight: 500;
  text-align: center;
}
.valore-icon { font-size: 1.5rem; }

@media (max-width: 900px) {
  .chi-siamo-inner { grid-template-columns: 1fr; gap: 3rem; }
  .chi-siamo-badge { right: 1rem; bottom: 1rem; }
}

/* ---- GALLERY ---- */
.gallery-section { padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 4px;
  margin-top: 2.5rem;
}
.gallery-item { overflow: hidden; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-tall { grid-row: span 2; }
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-tall { grid-row: span 1; }
}

/* ---- FLOTTA FOTO ---- */
.mezzo-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.mezzo-visual-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,58,45,0.35);
}

/* ---- PAGINE INTERNE ---- */
.page-hero {
  background: var(--verde);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--bianco); }
.page-hero p { color: rgba(250,248,244,0.6); font-size: 1.05rem; max-width: 55ch; margin-top: 1rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .perche-inner { grid-template-columns: 1fr; gap: 3rem; }
  .preventivo-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .campo.span2 { grid-column: span 1; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--verde);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(250,248,244,0.1);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .perche-stats { grid-template-columns: 1fr 1fr; }
}

/* FAQ */
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--grigio-b); }
.faq-item { border-bottom: 1px solid var(--grigio-b); }
.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 500;
  font-size: 1rem;
  color: var(--verde);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--oro); flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 1.25rem; font-size: 0.9rem; color: var(--testo-m); line-height: 1.75; max-width: 65ch; }

/* Pulsante WhatsApp fisso */
/* WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: rgba(37,211,102,0.25);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.wa-float .wa-label { display: flex; flex-direction: column; line-height: 1.2; }
.wa-float .wa-label strong { font-size: 0.875rem; }
.wa-float .wa-label small { font-size: 0.7rem; font-weight: 400; opacity: 0.85; }

@media (max-width: 899px) {
  .wa-float { padding: 0.9rem; border-radius: 50%; }
  .wa-float .wa-label { display: none; }
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--verde);
  color: var(--bianco);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  flex-wrap: wrap;
}
#cookie-banner.cookie-visible { transform: translateY(0); }
.cookie-testo { line-height: 1.6; color: rgba(250,248,244,0.85); }
.cookie-testo strong { color: var(--bianco); }
.cookie-testo a { color: var(--oro-l); text-decoration: underline; margin-left: 0.4rem; }
.cookie-btn {
  background: var(--oro);
  color: var(--verde);
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cookie-btn:hover { background: var(--oro-l); }
