/* ── FONT (Nunito, WOFF2) ── */
@font-face { font-family: 'Nunito'; src: url('fonts/Nunito-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('fonts/Nunito-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('fonts/Nunito-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('fonts/Nunito-ExtraBold.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('fonts/Nunito-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }

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

:root {
  --sky:      #5BB8F5;
  --sky-lt:   #EAF5FD;
  --sky-mid:  #B8DEFA;
  --blue:     #1A6BBF;
  --blue-dk:  #0D4A8A;
  --red:      #E63946;
  --red-dk:   #C1121F;
  --sun:      #FFD166;
  --dark:     #111827;
  --muted:    #4B5563;
  --white:    #FFFFFF;
  --paypal:   #0070BA;
  --r:        24px;
  --r-lg:     40px;
  --font:     'Nunito', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', system-ui, sans-serif; color: var(--dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
input, select, textarea, button { font-family: 'Nunito', system-ui, sans-serif; }

/* ── STICKY DONA ── */
.sticky-dona {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--paypal); color: #fff;
  border: none; border-radius: 50px;
  padding: 14px 26px;
  font-family: 'Nunito', system-ui, sans-serif; font-size: 1rem; font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,112,186,.38);
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: floatPulse 3s ease-in-out infinite;
}
.sticky-dona:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 32px rgba(0,112,186,.5); }
@keyframes floatPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(0,112,186,.38); }
  50%      { box-shadow: 0 8px 32px rgba(0,112,186,.55); }
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 2px solid var(--sky-lt);
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 2.5rem;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: .88rem; font-weight: 700; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); }
.nav-btn { background: var(--red); color: #fff !important; padding: .5rem 1.3rem; border-radius: 50px; transition: background .2s !important; }
.nav-btn:hover { background: var(--red-dk) !important; }

/* ── HERO ── */
#hero {
  background: linear-gradient(160deg, var(--blue-dk) 0%, var(--blue) 55%, var(--sky) 100%);
  padding: 5rem 0 0; position: relative; overflow: hidden;
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-sun  { position: absolute; top: -80px; right: -80px; width: 420px; height: 420px; background: var(--sun); border-radius: 50%; opacity: .18; }
.hero-sun2 { position: absolute; top: 40px; right: 40px;   width: 260px; height: 260px; background: var(--sun); border-radius: 50%; opacity: .12; }
.hero-cloud { position: absolute; background: rgba(255,255,255,.12); border-radius: 50px; }
.hero-cloud-1 { width: 200px; height: 60px; top: 18%; left: 5%; }
.hero-cloud-2 { width: 140px; height: 44px; top: 30%; left: 12%; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: calc(1100px + 5rem); margin: 0 auto; width: 100%;
  padding: 0 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: stretch;
  padding-bottom: 4rem;
}
.hero-text { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50px; padding: .35rem .9rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; margin-bottom: 1.5rem;
}
.hero-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.2rem; }
.hero-title em { font-style: normal; color: var(--sun); }
.hero-sub { font-size: 1.05rem; font-weight: 500; color: rgba(255,255,255,.82); max-width: 42ch; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  display: inline-block; background: #fff; color: var(--blue);
  font-family: 'Nunito', system-ui, sans-serif; font-weight: 800; font-size: .9rem;
  padding: .75rem 2rem; border-radius: 50px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.btn-outline-w {
  display: inline-block; background: transparent;
  border: 2px solid rgba(255,255,255,.6); color: #fff;
  font-family: 'Nunito', system-ui, sans-serif; font-weight: 800; font-size: .9rem;
  padding: .75rem 2rem; border-radius: 50px; text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-outline-w:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.hero-visual { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.hero-card {
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r-lg); padding: 1.5rem 1.8rem;
  backdrop-filter: blur(6px); color: #fff; flex: 1;
}
.hero-card-num { font-size: 2.4rem; font-weight: 900; line-height: 1; color: var(--sun); }
.hero-card-label { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.75); margin-top: .2rem; }
.hero-cards-row { display: flex; gap: 1rem; width: 100%; max-width: 650px; justify-content: flex-end; }

/* ── SECTIONS BASE ── */
.section-label {
  display: inline-block; background: var(--sky-lt); color: var(--blue);
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; line-height: 1.15; margin-bottom: 1rem; }
.section-intro { font-size: 1rem; font-weight: 500; color: var(--muted); max-width: 58ch; line-height: 1.8; }

/* ── PAGE HEADER (usato dalle sotto-pagine al posto di #hero) ── */
.page-header {
  background: linear-gradient(160deg, var(--blue-dk) 0%, var(--blue) 55%, var(--sky) 100%);
  padding: 4rem 2.5rem 3rem; position: relative; overflow: hidden;
}
.page-header-wrap { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; color: #fff; }
.page-header .section-label { background: rgba(255,255,255,.18); color: #fff; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.page-header p { font-size: 1.05rem; font-weight: 500; color: rgba(255,255,255,.85); max-width: 60ch; line-height: 1.7; }
.page-header .hero-sun  { position: absolute; top: -80px; right: -80px; width: 420px; height: 420px; background: var(--sun); border-radius: 50%; opacity: .18; }
.page-header .hero-sun2 { position: absolute; top: 40px; right: 40px;   width: 260px; height: 260px; background: var(--sun); border-radius: 50%; opacity: .12; }

/* .section-alt — sezione con sfondo azzurro chiaro e padding "attaccato all'ondina".
   Serve `!important` sul padding perché i selettori d'id (#chi-siamo, #cinquexmille, #contatti)
   hanno specificity più alta e imporrebbero il padding di default (6rem 2.5rem).
   Le sotto-pagine SENZA .section-alt (attivita.html, dona.html) restano invariate.
*/
.section-alt {
  background: var(--sky-lt);
  padding: 0.5rem 2.5rem 2.5rem !important;
}
/* Dentro .section-alt, ribalta gli sfondi dei box che erano azzurri per non perdere il contrasto */
.section-alt .about-meta { background: #fff; border: 1.5px solid var(--sky-mid); }
.section-alt .contact-icon { background: #fff; }
.section-alt .map-placeholder { background: #fff; }
.section-alt .contact-form-box { background: #fff; border: 1.5px solid var(--sky-mid); }
/* Azzera i "margin-top: 3rem" dei grid interni: sulle sotto-pagine i titoli sono già nella page-header,
   quindi il gap sopra il grid non serve (aggiungerebbe ~48px inutili al padding 0.5rem della sezione). */
.section-alt .act-grid { margin-top: 0; }
.section-alt .contact-grid { margin-top: 0; }

/* ── LANDING TEASER (cards nella home) ── */
.teaser-section { padding: 5rem 2.5rem; }
.teaser-section.alt-bg { background: var(--sky-lt); }
.teaser-wrap { max-width: 1100px; margin: 0 auto; }
.teaser-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.teaser-grid.reverse .teaser-visual { order: -1; }
.teaser-visual {
  border-radius: var(--r-lg); background: var(--sky-lt);
  padding: 2rem; display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.teaser-cta {
  display: inline-block; margin-top: 1.2rem;
  background: var(--blue); color: #fff;
  font-family: 'Nunito', system-ui, sans-serif; font-weight: 800; font-size: .9rem;
  padding: .7rem 1.7rem; border-radius: 50px; text-decoration: none;
  transition: background .2s;
}
.teaser-cta:hover { background: var(--blue-dk); }
.teaser-cta.red { background: var(--red); }
.teaser-cta.red:hover { background: var(--red-dk); }
@media (min-width: 900px) {
  .teaser-grid { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
}

/* ── CHI SIAMO ── */
#chi-siamo { padding: 6rem 2.5rem; }
.about-wrap { max-width: 1100px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text p { font-size: .97rem; font-weight: 500; color: var(--muted); line-height: 1.85; margin-bottom: 1.1rem; }
.about-text p strong { color: var(--dark); font-weight: 800; }
.about-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.chip { background: var(--sky-lt); color: var(--blue); font-size: .8rem; font-weight: 700; padding: .35rem .9rem; border-radius: 50px; }
.chip.red { background: #FDECEA; color: var(--red-dk); }
.about-meta { background: var(--sky-lt); border-radius: var(--r-lg); padding: 2rem 2.2rem; }
.meta-row { display: flex; flex-direction: column; padding: .9rem 0; border-bottom: 1.5px solid var(--sky-mid); gap: .2rem; }
.meta-row:last-child { border-bottom: none; padding-bottom: 0; }
.meta-row:first-child { padding-top: 0; }
.meta-key { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.meta-val { font-size: .9rem; font-weight: 700; color: var(--dark); }
.meta-val a { color: var(--blue); text-decoration: none; }
.meta-val a:hover { text-decoration: underline; }

/* ── ATTIVITÀ ── */
#attivita { background: var(--sky-lt); padding: 6rem 2.5rem; }
.act-wrap { max-width: 1100px; margin: 0 auto; }
.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.act-card { background: var(--white); border-radius: var(--r-lg); padding: 2.2rem 1.8rem; transition: transform .22s, box-shadow .22s; }
.act-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,107,191,.13); }
.act-icon { width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.2rem; }
.act-icon.blue { background: var(--sky-lt); }
.act-icon.red  { background: #FDECEA; }
.act-icon.sun  { background: #FFF8E1; }
.act-title { font-size: 1.1rem; font-weight: 900; margin-bottom: .6rem; color: var(--dark); }
.act-desc  { font-size: .88rem; font-weight: 500; color: var(--muted); line-height: 1.75; }
.act-detail { margin-top: 3rem; }
.act-detail h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: .8rem; color: var(--dark); }
.act-detail p { font-size: .97rem; font-weight: 500; color: var(--muted); line-height: 1.85; margin-bottom: 1rem; }

/* ── 5x1000 ── */
#cinquexmille { padding: 6rem 2.5rem; }
.cinque-wrap {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 100%);
  border-radius: var(--r-lg); padding: 4rem;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.cinque-sun { position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; background: var(--sun); border-radius: 50%; opacity: .15; }
.cinque-text .section-label { background: rgba(255,255,255,.15); color: #fff; }
.cinque-text .section-title { color: #fff; }
.cinque-text p { color: rgba(255,255,255,.78); font-size: .97rem; font-weight: 500; line-height: 1.85; }
.cinque-box { position: relative; background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.2); border-radius: var(--r); padding: 2rem; text-align: center; }
.cinque-box h3 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: .3rem; }
.cinque-cf { font-size: clamp(1.3rem, 6vw, 1.8rem); font-weight: 900; color: var(--sun); letter-spacing: .04em; margin: .5rem 0 1rem; background: rgba(0,0,0,.2); border-radius: var(--r); padding: .7rem 1rem; display: inline-block; max-width: 100%; box-sizing: border-box; }
.cinque-box p { color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 600; line-height: 1.6; }
.btn-copy { margin-top: 1.2rem; background: var(--sun); color: var(--dark); border: none; cursor: pointer; font-family: 'Nunito', system-ui, sans-serif; font-weight: 800; font-size: .85rem; padding: .65rem 1.5rem; border-radius: 50px; transition: transform .15s; }
.btn-copy:hover { transform: scale(1.04); }

/* ── DONA ── */
#dona { background: var(--sky-lt); padding: 6rem 2.5rem; }
.dona-wrap { max-width: 1100px; margin: 0 auto; text-align: center; }
.dona-wrap .section-label { display: block; margin: 0 auto 1rem; width: fit-content; }
.dona-wrap .section-intro { margin: 0 auto 3rem; }
.dona-card { background: var(--white); border-radius: var(--r-lg); padding: 3rem; box-shadow: 0 8px 40px rgba(26,107,191,.10); }
.dona-amounts { display: grid; grid-template-columns: repeat(5, 1fr); gap: .7rem; margin-bottom: 2rem; align-items: center; }
.amount-btn { padding: .7rem .5rem; border: 2px solid var(--sky-mid); border-radius: var(--r); background: transparent; color: var(--blue); font-family: 'Nunito', system-ui, sans-serif; font-size: 1rem; font-weight: 800; cursor: pointer; transition: all .15s; }
.amount-btn:hover, .amount-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
#paypal-button-container { margin-bottom: .8rem; isolation: isolate; }
.dona-note { font-size: .78rem; font-weight: 600; color: var(--muted); }

/* ── CONTATTI ── */
#contatti { padding: 6rem 2.5rem; }
.contact-wrap { max-width: 1100px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-icon { flex-shrink: 0; width: 48px; height: 48px; background: var(--sky-lt); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-k { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: .2rem; }
.contact-v { font-size: .95rem; font-weight: 700; color: var(--dark); }
.contact-v a { color: var(--blue); text-decoration: none; }
.contact-v a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 3rem 2.5rem; }
.contact-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media (max-width:900px) {
  .contact-form-grid { grid-template-columns:1fr; }
  .contact-form-grid .col-full { grid-column:1; }
}
@media (max-width:900px) {
  .footer-inner { flex-direction: column; text-align: center; }
}
.footer-copy { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.45); line-height: 1.6; }
.mobile-br { display: none; }
.mobile-hide { }
@media (max-width:900px) { .mobile-br { display: initial; } .mobile-hide { display: none; } }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.5); text-decoration: none; }
.footer-links a:hover { color: #fff; }

/* ── WAVES ── */
.wave { display: block; width: 100%; margin-bottom: -1px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner, .about-grid, .act-grid, .cinque-wrap, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  nav { padding: .9rem 1.5rem; }
  .nav-links { display: none; }
  #hero { padding: 3.5rem 0 0; min-height: auto; }
  .hero-inner { padding: 0 1.5rem 3rem; }
  .hero-card { padding: 1.2rem 1.1rem; }
  .hero-card-num { font-size: 1.9rem; }
  #chi-siamo, #attivita, #dona, #contatti, #cinquexmille { padding: 4rem 1.5rem; }
  .page-header { padding: 3rem 1.5rem 2.5rem; }
  .teaser-section { padding: 3rem 1.5rem; }
  .about-meta { padding: 1.6rem 1.4rem; }
  .meta-val { overflow-wrap: anywhere; }
  .cinque-wrap { padding: 2.5rem 1.5rem; }
  .cinque-box { padding: 1.6rem 1rem; }
  .dona-amounts { grid-template-columns: repeat(2, 1fr); }
  .dona-card { padding: 2rem 1.2rem; }
  .dona-cols { flex-direction: column; gap: 1.2rem; align-items: stretch; }
  .dona-cols .dona-col--form { width: 100%; }
  .dona-bonifico, .dona-fiscal { padding: 1.1rem 1rem; }
  .iban-row { gap: .5rem; }
  .contact-form-box { padding: 2rem 1.3rem 1.5rem; }
  .sticky-dona { bottom: 16px; right: 16px; padding: 12px 20px; font-size: .9rem; }
}

/* ── COOKIE BANNER ── */
#cookie-banner { position:fixed;bottom:0;left:0;right:0;z-index:1001;background:var(--dark);padding:1.2rem 2rem;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;box-shadow:0 -4px 24px rgba(0,0,0,.3); }
#cookie-banner p { font-size:.83rem;font-weight:600;color:rgba(255,255,255,.75);margin:0;flex:1;min-width:180px;line-height:1.6; }
#cookie-banner a { color:var(--sky); }
.cookie-btns { display:flex;gap:.75rem;flex-shrink:0; }
.cookie-btn-ok { background:var(--blue);color:#fff;border:none;border-radius:50px;padding:.55rem 1.4rem;font-family:'Nunito',system-ui,sans-serif;font-weight:800;font-size:.88rem;cursor:pointer;transition:background .15s; }
.cookie-btn-ok:hover { background:var(--blue-dk); }
.cookie-btn-no { background:transparent;color:rgba(255,255,255,.6);border:1.5px solid rgba(255,255,255,.25);border-radius:50px;padding:.55rem 1.2rem;font-family:'Nunito',system-ui,sans-serif;font-weight:700;font-size:.88rem;cursor:pointer;transition:color .15s,border-color .15s; }
.cookie-btn-no:hover { color:#fff;border-color:rgba(255,255,255,.5); }

/* ── 5x1000 MODAL (solo home) ── */
.modal-overlay { position:fixed; inset:0; z-index:1100; background:rgba(17,24,39,.62); display:flex; align-items:center; justify-content:center; padding:1.5rem; overflow-y:auto; }
.modal-5x { position:relative; overflow:hidden; width:100%; max-width:540px; margin:auto; background:linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 100%); border-radius:var(--r-lg); padding:3rem 2.5rem 2.5rem; text-align:center; box-shadow:0 24px 70px rgba(0,0,0,.4); }
.modal-5x .section-title { font-size:clamp(1.6rem, 5vw, 2.2rem); }
.modal-5x .cinque-box { margin-top:1.6rem; }
.modal-close { position:absolute; top:1rem; right:1rem; z-index:2; width:38px; height:38px; border-radius:50%; border:none; cursor:pointer; background:rgba(255,255,255,.15); color:#fff; font-size:1.4rem; line-height:1; font-family:'Nunito',system-ui,sans-serif; transition:background .15s; }
.modal-close:hover { background:rgba(255,255,255,.3); }
@media (max-width:900px) { .modal-5x { padding:2.5rem 1.5rem 2rem; } }

/* ── UTILITY & COMPONENTI ── */
.hidden { display: none; }
.nav-logo-img { width: auto; display: block; }
.hero-slideshow { position: relative; max-width: 650px; width: 100%; aspect-ratio: 1408 / 768; border-radius: 28px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slide.active { opacity: 1; }
.wave-white { background: white; }
.wave-sky { background: #EAF5FD; }
.c-white { color: #fff; }
.c-dark { color: var(--dark); }
.link-blue { color: var(--blue); }
.mt-r08 { margin-top: .8rem; }
.cinque-em { color: rgba(255,255,255,.9); font-style: normal; font-weight: 700; }
.amount-custom { display: flex; align-items: center; border: 2px solid var(--sky-mid); border-radius: var(--r); overflow: hidden; }
.amount-custom-cur { padding: .6rem .7rem; font-size: 1rem; font-weight: 800; color: var(--blue); background: var(--sky-lt); }
.amount-custom-input { border: none; outline: none; padding: .65rem .5rem; font-size: .95rem; font-weight: 700; color: var(--dark); width: 80px; background: white; }
.donor-cf-row { margin-bottom: 1rem; text-align: left; }
.donor-cf-label { display: block; font-size: .8rem; font-weight: 800; color: var(--blue); margin-bottom: .4rem; }
.donor-cf-hint { font-weight: 600; color: var(--muted); }
.donor-cf-input { width: 100%; box-sizing: border-box; border: 2px solid var(--sky-mid); border-radius: var(--r); padding: .65rem 1rem; font-size: .95rem; font-weight: 700; color: var(--dark); font-family: 'Nunito', system-ui, sans-serif; outline: none; transition: border-color .15s; }
.donor-cf-input:focus { border-color: var(--blue); }
.pp-no-consent { padding: 1rem 1.2rem; background: var(--sky-lt); border-radius: var(--r); border: 2px solid var(--sky-mid); text-align: center; margin-bottom: .5rem; }
.pp-no-consent-text { font-size: .88rem; font-weight: 700; color: var(--muted); margin-bottom: .6rem; }
.btn-accept { background: var(--blue); color: #fff; border: none; cursor: pointer; font-size: .85rem; font-weight: 800; padding: .5rem 1.3rem; border-radius: 50px; font-family: 'Nunito', system-ui, sans-serif; }
.dona-bonifico { margin-top: 1.2rem; padding: 1.2rem 1.4rem; background: var(--sky-lt); border-radius: var(--r); border-left: 4px solid var(--sky); text-align: left; }
.dona-donorbox { margin-top: 1.2rem; text-align: left; }
.dona-cols { display: flex; gap: 3rem; align-items: flex-start; margin-top: 1.2rem; }
.dona-col { min-width: 0; }
.dona-col--form { flex: 0 0 auto; width: 380px; max-width: 100%; }
.dona-col--info { flex: 1 1 0; }
.dona-col > :first-child { margin-top: 0; }
#donorbox-no-consent { margin-top: 0; }
#donorbox-container { margin-top: 0; display: block; max-width: 100%; overflow: hidden; }
#donorbox-container dbox-widget { display: block; max-width: 100% !important; min-width: 0 !important; width: 100% !important; }
#donorbox-container iframe { display: block; width: 100% !important; max-width: 100% !important; min-width: 0 !important; border: 0; }
.donorbox-wall { display: block; width: 100%; max-width: 500px; min-height: 345px; border: 0; margin: 1rem auto 0; }
.dona-fiscal { margin-top: 1.5rem; padding: 1.2rem 1.4rem; background: var(--sky-lt); border-radius: var(--r); border-left: 4px solid var(--blue); text-align: left; }
.dona-box-title { font-size: .82rem; font-weight: 800; color: var(--blue); margin-bottom: .6rem; }
.dona-box-title-sm { font-size: .82rem; font-weight: 800; color: var(--blue); margin-bottom: .4rem; }
.dona-box-line { font-size: .8rem; font-weight: 600; color: var(--muted); margin-bottom: .3rem; }
.iban-row { display: flex; align-items: center; gap: .6rem; margin-top: .5rem; flex-wrap: wrap; }
.iban-code { font-size: clamp(.72rem, 3vw, .85rem); font-weight: 800; color: var(--dark); background: white; padding: .4rem .8rem; border-radius: 8px; border: 1.5px solid var(--sky-mid); letter-spacing: .04em; max-width: 100%; overflow-wrap: anywhere; }
.btn-copy-iban { background: var(--blue); color: #fff; border: none; cursor: pointer; font-size: .78rem; font-weight: 800; padding: .4rem 1rem; border-radius: 50px; white-space: nowrap; }
.dona-box-note { font-size: .75rem; font-weight: 600; color: var(--muted); margin-top: .5rem; opacity: .8; }
.dona-fiscal-p0 { font-size: .8rem; font-weight: 600; color: var(--muted); line-height: 1.7; margin: 0; }
.dona-fiscal-p { font-size: .8rem; font-weight: 600; color: var(--muted); line-height: 1.7; margin: .5rem 0 0; }
.dona-fiscal-list { font-size: .8rem; font-weight: 600; color: var(--muted); line-height: 1.8; margin: .5rem 0 .5rem 1.2rem; padding: 0; }
.dona-fiscal-fine { font-size: .75rem; font-weight: 600; color: var(--muted); margin: 0; opacity: .75; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; height: 300px; border: 2px solid var(--sky-mid); }
.map-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; background: var(--sky-lt); }
.map-ph-text { font-size: .9rem; font-weight: 700; color: var(--muted); margin: 0; }
.map-iframe { border: 0; display: block; }
.contact-form-box { margin-top: 3rem; background: var(--sky-lt); border-radius: var(--r-lg); padding: 2.5rem 2.5rem 2rem; }
.contact-form-box .section-label { margin-bottom: .8rem; }
.contact-form-title { font-size: 1.4rem; font-weight: 900; margin-bottom: .5rem; color: var(--dark); }
.contact-form-sub { font-size: .9rem; font-weight: 600; color: var(--muted); margin-bottom: 1.8rem; }
.field-group { display: flex; flex-direction: column; gap: .4rem; }
.col-full { grid-column: 1 / -1; }
.field-label { font-size: .75rem; font-weight: 800; color: var(--blue); letter-spacing: .1em; text-transform: uppercase; }
.field { padding: .75rem 1rem; border: 2px solid var(--sky-mid); border-radius: var(--r); font-size: .92rem; font-weight: 600; outline: none; transition: border-color .2s; }
.field:focus { border-color: var(--blue); }
.field--select { background: white; }
.field--textarea { resize: vertical; }
.form-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.form-privacy { font-size: .75rem; font-weight: 600; color: var(--muted); }
.btn-submit { background: var(--blue); color: #fff; border: none; cursor: pointer; font-size: .95rem; font-weight: 800; padding: .8rem 2rem; border-radius: 50px; transition: background .2s; white-space: nowrap; }
.btn-submit:hover { background: var(--blue-dk); }
.form-feedback { padding: .9rem 1.2rem; border-radius: var(--r); font-size: .88rem; font-weight: 700; }
.footer-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
.footer-copy-group { display: flex; flex-direction: column; gap: .35rem; text-align: center; }
.dona-thanks { color: var(--blue); font-weight: 800; font-size: 1.05rem; padding: 1rem 0; }
.pp-fallback { padding: 1rem 1.2rem; background: var(--sky-lt); border-radius: var(--r); border: 2px solid var(--sky-mid); text-align: center; }
.pp-fallback-text { font-size: .88rem; font-weight: 700; color: var(--muted); margin: 0; }
.pp-fallback-link { color: var(--blue); font-weight: 800; }