@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,700;0,900;1,400&display=swap");
@font-face {
  font-family: "GreenpeaceSans";
  font-style: normal;
  src: url("../font/GreenpeaceSans-Bold.woff2") format("woff2");
}
/* =========================
   LIGHT MODE (default)
   ========================= */
:root {
  --bg-main: #ffffff;
  --text-main: #2d2d2b;
  --primary: #004B00;
  --secondary: #66CC00;
  --accent: #ff613f;
  --border: #666666;
  --neutral: #ecece0;
  --form-bg: #66CC00;
  --form-cta-bg: #004B00;
  --input-bg: #ffffff;
  --input-text: #004B00;
  --skip: #cacaad;
  --input-focus-bg: color-mix(in srgb, var(--secondary) 25%, transparent);
  --input-focus-tx: var(--primary);
  /* no change */
  --warning: #f2545b;
  --stay-dark: #2d2d2b;
  --stay-light: #ffffff;
}

/* =========================
   DARK MODE
   ========================= */
[data-darkmode=true] {
  --bg-main: #0f172a;
  --text-main: #e5e7eb;
  --primary: #66CC00;
  --secondary: #004B00;
  --accent: #FFFF00;
  --border: #334155;
  --neutral: #004B00;
  --form-bg: #004B00;
  --form-cta-bg: #166534;
  --input-bg: #020617;
  --input-text: #a7f3d0;
  --skip: #002900;
  --input-focus-bg: color-mix(in srgb, var(--secondary) 25%, transparent);
  --input-focus-tx: var(--primary);
  /* no change */
  --warning: #f2545b;
  --stay-dark: #2d2d2b;
  --stay-light: #ffffff;
}

:focus, [type=text]:focus, [type=email]:focus, [type=tel]:focus, select:focus {
  outline: solid 3px var(--accent);
}

/* Focus visibile quando il checkbox riceve focus */
.switch-input:focus + .switch-paddle {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent);
  border-radius: 999px;
  /* opzionale, coerente con lo switch */
}

/* Migliore pratica: solo per tastiera */
.switch-input:focus-visible + .switch-paddle {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent);
}

.skipLink {
  padding: 6px;
  position: fixed;
  top: -40px;
  left: 0px;
  background: var(--primary);
  color: var(--bg-main) !important;
  text-decoration: underline;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 8px;
  -webkit-transition: top 0.5s ease-out;
  transition: top 0.5s ease-out;
  z-index: 10000;
}

.skipLink:focus {
  top: 0;
  width: auto;
  height: auto;
  float: left;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Modalità chiaro/scuro */
.switch.small {
  position: absolute;
  right: 10px;
}

.switch.small .switch-paddle {
  border-radius: 34px;
  border: solid 1px var(--text-main);
}

.switch.small .switch-paddle::after {
  margin-top: -1px;
  border-radius: 50%;
  background-color: var(--primary);
}

/* Scuro */
.switch-paddle {
  background: #e8e9ed;
}

.luna {
  width: 18px;
  margin-top: 6px;
  fill: #3a435d;
}

/* Chiaro */
input:checked ~ .switch-paddle {
  background: #3a435d;
}

.sole {
  width: 18px;
  margin-top: 6px;
  margin-right: -3px;
  fill: #e8e9ed;
}

/* FINE Modalità chiaro/scuro */
.button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--bg-main);
  font-family: "GreenpeaceSans", sans-serif;
  font-size: 20px;
  text-align: center;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-height: 44px;
}

.button:hover {
  background-color: var(--secondary);
  color: var(--text-main);
  outline: solid 2px #66CC00;
  outline-offset: 2px;
}

.button:focus {
  background-color: #004D00;
  color: var(--bg-main);
}

/* CookieBot */
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
  background-color: var(--primary) !important;
  color: var(--bg-main) !important;
  border: none !important;
}

#CybotCookiebotDialogBodyContentText > a,
#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a,
#CybotCookiebotDialogDetailBodyContentTextAbout > a {
  color: #000000 !important;
  text-decoration: underline !important;
}

#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection {
  background-color: var(--bg-main) !important;
  border-color: #000000 !important;
  color: #000000 !important;
}

#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize .CybotCookiebotDialogArrow {
  border-color: #000000 !important;
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive {
  border-color: transparent;
  border-bottom: 1px solid #66cc00;
  color: var(--primary) !important;
  background-color: #c2eb99 !important;
  border: solid 2px var(--primary) !important;
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover {
  color: #000000 !important;
  text-decoration: underline !important;
}

/* fine CookieBot */
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  margin-top: -50px !important;
  padding-top: 50px !important;
}

/* generic item */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-family: "GreenpeaceSans", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1em;
}

p {
  color: var(--text-main);
  font-family: "Work Sans", sans-serif;
  font-weight: normal;
  font-size: 1.1em;
}

p.small {
  font-size: 0.9rem !important;
}

.textOutline {
  font-size: 3rem;
  line-height: 3.5rem;
  text-transform: uppercase;
  font-family: "GreenpeaceSans", sans-serif;
  color: var(--bg-main);
  text-shadow: -1px -1px 0 var(--text-main), 1px -1px 0 var(--text-main), -1px 1px 0 var(--text-main), 1px 1px 0 var(--text-main);
}

.textOutline span {
  color: var(--text-main);
  text-shadow: -1px -1px 0 var(--text-main), 1px -1px 0 var(--text-main), -1px 1px 0 var(--text-main), 1px 1px 0 var(--text-main);
}

@media (max-width: 767px) {
  .textOutline span {
    color: var(--text-main);
    text-shadow: none;
  }
}
.textOutlineGreen {
  font-size: 3rem;
  line-height: 3.5rem;
  text-transform: uppercase;
  font-family: "GreenpeaceSans", sans-serif;
  color: var(--bg-main);
  text-shadow: -1px -1px 0 var(--primary), 1px -1px 0 var(--primary), -1px 1px 0 var(--primary), 1px 1px 0 var(--primary);
}

.textOutlineGreen span {
  color: var(--primary);
  text-shadow: -1px -1px 0 var(--primary), 1px -1px 0 var(--primary), -1px 1px 0 var(--primary), 1px 1px 0 var(--primary);
}

@media (max-width: 767px) {
  .textOutlineGreen span {
    color: var(--primary);
    text-shadow: none;
  }
}
hr {
  border-top: 1px solid var(--border);
  border-bottom: 0px;
  margin-left: 0px;
}

evid {
  font-weight: bold;
  color: var(--text-main);
  background-color: var(--secondary);
  display: inline;
  padding: 2px 0px;
}

.titlepageimg {
  width: 75% !important;
}

.titleimg {
  width: 65% !important;
  margin: 0px 0px 20px 10px;
}

@media only screen and (max-width: 600px) {
  .titleimg {
    width: 95% !important;
  }
}
.hrimg {
  margin-top: 80px;
}

@keyframes imageAnimation {
  0% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(1.2) rotate(4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
@keyframes shrink {
  0% {
    background-size: 110% 110%;
  }
  100% {
    background-size: 100% 100%;
  }
}
#modulo-text,
#modulo-columns,
#modulo-requests {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer hr {
  max-width: 100%;
}

.footer p {
  font-size: 0.7em !important;
  padding-left: 10px;
}

.footer p a {
  text-decoration: underline;
}

.footer p,
.footer p a {
  color: var(--text-main);
}

.footer span {
  font-weight: 900;
}

.reveal-overlay {
  background-color: rgba(10, 10, 10, 0.9);
}

#firma-ora {
  display: block;
  position: fixed;
  right: 6%;
  bottom: -6rem;
  width: 5.8rem;
  height: 5.8rem;
  padding-top: 2.7rem;
  background: var(--primary);
  background-image: url("../img/sign-fab.svg");
  background-position: 50% 20%, 50% 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: 50px, 100%;
  -webkit-border-radius: 50% 50%;
  -moz-border-radius: 50% 50%;
  border-radius: 50% 50%;
  font-family: "GreenpeaceSans", sans-serif;
  font-size: 1.125rem;
  color: var(--bg-main);
  font-weight: 900;
  line-height: 1.125rem;
  text-align: center;
  text-transform: uppercase;
  transition: bottom 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  z-index: 8;
}

#firma-ora.in {
  bottom: 2rem;
}

@media (min-width: 768px) {
  #firma-ora {
    display: none;
  }
}
.loader-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  text-align: center;
}

.loader {
  display: inline-block;
  position: relative;
  animation: loader 2s infinite ease;
}

.loader img {
  width: 50px;
  height: 50px;
}

.loader p {
  color: var(--bg-main);
  font-size: 0.6em;
  white-space: nowrap;
  font-family: "GreenpeaceSans", sans-serif;
  font-weight: 900;
}

/** FORM **/
.petition-form {
  background-color: var(--form-bg);
  padding: 30px 30px 20px 30px;
  margin-bottom: 30px !important;
  -webkit-border-radius: 0px 0px 3px 3px;
  -moz-border-radius: 0px 0px 3px 3px;
  border-radius: 0px 0px 3px 3px;
  text-align: center;
}

.formBox__CTA-petitionbox {
  background: #004B00;
  line-height: 1.2em !important;
  padding: 15px 30px 5px 30px;
  -webkit-border-radius: 3px 3px 0px 0px;
  -moz-border-radius: 3px 3px 0px 0px;
  border-radius: 3px 3px 0px 0px;
}

.formBox__CTA-petition {
  font-family: "Work Sans", sans-serif;
  font-size: 0.9em;
  color: #e5e7eb !important;
  padding-top: 5px;
}

.formBox__CTA-petition span {
  font-family: "GreenpeaceSans", sans-serif !important;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.hs-input, .input, .inputs-list {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

[type=text], [type=email], [type=tel], select {
  border: none !important;
  font-family: "GreenpeaceSans", sans-serif;
  font-weight: 900;
  font-size: 17px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: var(--input-bg);
  color: var(--input-text) !important;
  margin-bottom: 10px;
}

[type=text]:focus, [type=email]:focus, [type=tel]:focus {
  background-color: var(--bg-main);
  color: var(--input-focus-tx);
  transition: all 0.3s ease;
}

.prefix {
  font-family: "GreenpeaceSans", sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: var(--primary) !important;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--input-text) !important;
  opacity: 1;
  font-family: "GreenpeaceSans", sans-serif;
  font-weight: 900;
  font-size: 17px !important;
  text-transform: uppercase;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--primary) !important;
  opacity: 1;
  font-family: "GreenpeaceSans", sans-serif;
  font-weight: 900;
  font-size: 17px !important;
  text-transform: uppercase;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--primary) !important;
  opacity: 1;
  font-family: "GreenpeaceSans", sans-serif;
  font-weight: 900;
  font-size: 17px !important;
  text-transform: uppercase;
}

.en-form .pledge-field {
  position: relative;
  padding: 0;
}

.privacy-disclaimer {
  font-size: 0.6em !important;
  line-height: 0.7rem !important;
  font-weight: 400;
  color: #103747 !important;
}

.privacy-disclaimer a {
  color: #103747;
  text-decoration: underline;
}

p.en-form, p.en-error {
  font-weight: bolder;
  color: var(--warning);
  font-size: 0.8em;
  text-align: left;
  margin-top: -5px;
  padding-left: 5px;
  line-height: 0.8em;
  border-left: var(--warning) solid 10px;
}

.btnsign {
  background: var(--primary) !important;
  color: var(--bg-main) !important;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: bolder;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 20px;
  width: 50%;
  margin: 25px 0px;
  display: block;
  text-align: center;
}

.hbspt-form {
  text-align: left;
}

.hs-submit {
  text-align: center;
}

.hs-button.primary {
  background: var(--primary) !important;
  color: var(--bg-main) !important;
  font-family: "GreenpeaceSans", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: none;
  padding: 10px 20px;
  max-width: 100%;
  /* Assicura che il pulsante non ecceda la larghezza del contenitore */
  box-sizing: border-box;
  /* Include padding nei calcoli della larghezza */
}

/* Media query per schermi piccoli */
@media (max-width: 600px) {
  .hs-button.primary {
    font-size: 1rem;
    /* Riduce la dimensione del testo */
    padding: 8px 15px;
    /* Riduce il padding per schermi piccoli */
    text-align: center;
    /* Centra il testo */
  }
}
.hs-button.primary:hover {
  background-color: var(--accent) !important;
  color: #2d2d2b !important;
  outline: solid 2px var(--accent);
  outline-offset: 2px;
}

.hs-button.primary:focus {
  background-color: #004D00;
  color: var(--bg-main);
}

.hs-form-field > label {
  font-family: "GreenpeaceSans", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-main);
  text-transform: uppercase;
}

.legal-consent-container > div > p {
  color: var(--text-main);
  font-size: 0.9em !important;
  line-height: 0.7rem !important;
  margin-top: 10px;
}

.legal-consent-container a {
  color: var(--text-main);
  text-decoration: underline;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin-top: 25px;
}

.hs-form-required {
  font-family: "Work Sans", sans-serif;
  font-weight: normal;
  text-transform: none;
  font-size: 0.9rem;
  color: var(--text-main);
}

.form-required-message {
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  text-transform: none;
  font-size: 0.9rem;
  color: var(--text-main);
}

label.hs-error-msg, label.hs-main-font-element {
  font-weight: bold;
  color: var(--text-main);
  font-size: 0.7rem;
  text-align: left;
  margin-top: -5px;
  padding-left: 20px;
  line-height: 0.8rem;
  background: url(../img/errorForm.svg) bottom left no-repeat;
  background-size: 15px;
}

ul.hs-error-msgs label a {
  font-weight: bold;
  color: var(--text-main);
  font-size: 0.7rem;
  text-align: left;
  text-decoration: underline;
  margin-top: -5px;
  padding-left: 20px;
  line-height: 0.8rem;
  background: url(../img/questionForm.svg) bottom left no-repeat;
  background-size: 15px;
}

ul.hs-error-msgs {
  list-style-type: none;
}

.legal-consent-container .hs-error-msgs label {
  color: var(--text-main) !important;
}

ul.inputs-list {
  list-style-type: none;
}

li.hs-form-booleancheckbox p {
  color: var(--text-main);
  font-size: 0.6rem !important;
  line-height: 1.2rem !important;
}

.hs-richtext {
  margin-bottom: -18px;
}

li.hs-form-booleancheckbox > label > span > p {
  font-weight: bold !important;
  font-size: 0.9rem !important;
}

.hs-form-booleancheckbox {
  margin-top: -15px;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  line-height: 0.9rem !important;
}

.hs-form-booleancheckbox input[type=checkbox] {
  margin-top: 3px;
}

.header {
  background-color: var(--form-bg);
  mask: url("../img/frame-full.svg") no-repeat center bottom;
  -webkit-mask: url("../img/frame-full.svg") no-repeat center bottom;
  mask-size: cover;
  -webkit-mask-size: cover;
  padding: 30px 0px;
  position: relative;
  z-index: 1;
}

.imgopen {
  margin-top: -80px;
  margin-bottom: 20px;
}

.covertext {
  padding-top: 60px;
}

.logoGP {
  width: 120px;
  height: 30px;
  background-color: var(--text-main);
  -webkit-mask: url(../img/gp-logo.svg) no-repeat center;
  mask: url(../img/gp-logo.svg) no-repeat center;
  margin-bottom: 5px;
}

h1.cover_title {
  color: var(--text-main);
}

h3.cover_subtitle {
  text-transform: uppercase;
  color: var(--text-main);
}

p.cover_subtitle {
  color: var(--text-main);
  font-family: "Work Sans", sans-serif;
}

p.cover_subtitle strong {
  color: var(--text-main) !important;
}

img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

@media screen and (max-width: 48em) {
  h1.cover_title {
    color: var(--text-main);
    font-size: 8vw !important;
  }

  .cover1bkg {
    background-position: center bottom;
  }

  .cover {
    min-height: 130vh;
  }

  .imgopen {
    margin-top: 0px;
  }
}
.imgcenter {
  width: 75%;
}

.paddingDesk {
  padding-top: 80px;
}

@media screen and (max-width: 48em) {
  .imgcenter {
    width: 100%;
  }

  .paddingDesk {
    padding-top: 0px;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #modulo-text p {
    column-count: 2;
    column-gap: 4em;
  }
}
.single-request {
  color: var(--text-main) !important;
}

.single-request::first-letter {
  font-weight: 900;
  color: var(--primary);
  font-size: 3.5em;
  line-height: 0.5em;
  padding-top: 0.2em;
  margin-right: 10px;
  float: left;
}

h4.closecta {
  color: SecondaryColor;
  text-transform: uppercase;
  line-height: 1.2em;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #modulo-requests p {
    column-count: 2;
    column-gap: 4em;
  }
}
/* Stile per il bottone del video */
.video-thumb {
  display: block;
  padding: 0;
  border: none;
  cursor: pointer;
}

/* Stile quando il video riceve il FOCUS */
.video-thumb:focus {
  /* Disegna il bordo */
  outline: 3px solid var(--accent);
  /* TRUCCO: Sposta il bordo all'interno di 5px così non viene tagliato */
  outline-offset: -3px;
  /* Assicurati che non ci siano altri bordi */
  border: none;
}

.video-trigger-btn {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
  text-align: left;
  outline: none;
  /* Creiamo un elemento 'fantasma' che sta SOPRA l'immagine */
  /* Quando il bottone ha il focus, accendiamo l'ombra sul fantasma ::after */
}
.video-trigger-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
  /* Non deve bloccare i click */
  box-shadow: none;
  /* Di base è invisibile */
  transition: box-shadow 0.1s ease;
}
.video-trigger-btn:focus-visible::after {
  box-shadow: inset 0 0 0 5px var(--accent);
  /* Bordo interno verde */
}

/* --- Immagine di copertina --- */
.video-cover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* Evita che l'immagine rubi il focus o interferisca */
  pointer-events: none;
}

/* --- Stile Play Button e Animazioni (Resta uguale a prima) --- */
.play-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  pointer-events: none;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  /* Fluid border effect */
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 640px) {
  .play-button-wrapper {
    width: 80px;
    height: 80px;
  }
}
.play-button-wrapper .play-button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-button-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #fff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), fill 0.3s ease;
}

/* Trigger animazione su Hover mouse E Focus tastiera */
.video-trigger-btn:hover .play-button-wrapper,
.video-trigger-btn:focus-visible .play-button-wrapper {
  box-shadow: inset 0 0 0 40px #fff;
}
@media screen and (max-width: 640px) {
  .video-trigger-btn:hover .play-button-wrapper,
.video-trigger-btn:focus-visible .play-button-wrapper {
    box-shadow: inset 0 0 0 50px #fff;
  }
}

.video-trigger-btn:hover .play-button-wrapper svg,
.video-trigger-btn:focus-visible .play-button-wrapper svg {
  fill: #000;
  transform: scale(0.75);
}

/** -- THANK YOU  -- **/
.tnkpage h1:focus {
  outline: none;
  box-shadow: none;
}

.iconshare {
  color: var(--primary);
  font-size: 2rem !important;
}

.iconshare button {
  color: var(--primary);
}

.iconshare button .fa-inverse {
  color: var(--bg-main);
}

.fa-stack-1x, .fa-stack-2x {
  top: 0px;
}

.copy-feedback {
  position: absolute;
  max-width: 500px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  margin-top: 10px;
  background: var(--accent);
  color: var(--stay-dark);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 10;
}

.copy-feedback.is-visible {
  opacity: 1;
}

#copy-whatsapp-cta {
  cursor: pointer;
}

#copy-whatsapp-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 500px) {
  .copy-feedback {
    left: 0%;
    transform: translateX(0%);
    margin: 10px 40px;
  }
}
.content-form {
  padding: 20px 20px 10px 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: var(--secondary);
}

.social-cta {
  padding-top: 0px;
  cursor: pointer;
}

#logoTYP {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

#start {
  height: 100vh;
  position: relative;
}

.content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 95%;
  height: calc(50% + 25px);
  margin: auto;
  text-align: center;
}

.content-donation {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 95%;
  height: calc(50% + 25px);
  margin: auto;
  text-align: center;
}

.content-donation h2, .content-donation h5 {
  text-align: center;
}

.content-donationform {
  margin: 0px auto;
  width: 100%;
  max-width: 400px;
}

#start {
  background: var(--bg-main);
  position: relative;
  height: 100vh;
}

#DIVshare {
  background: var(--neutral);
  position: relative;
  height: 100vh;
  display: none;
}

#DIVdonation {
  background: var(--bg-main);
  position: relative;
  height: 100vh;
  display: none;
}

.tkpBTN {
  background-color: var(--primary);
  color: var(--bg-main);
  border: none;
  width: 100%;
  max-width: 130px;
  padding: 15px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  font-size: 1.4em;
  font-family: "GreenpeaceSans", sans-serif;
}

.tkpBTN.skip {
  background-color: var(--skip);
  color: var(--text-main);
  padding: 10px;
  font-size: 0.8em;
  max-width: 80px;
  margin-top: 15px;
}

.tkpBTN:hover {
  background-color: var(--accent);
  color: var(--stay-dark);
}

/*.contentDonazioneBTN{
  margin: 40px 0px;
}*/
.miniCTA a {
  color: #48150c;
  font-size: 0.8em;
  text-decoration: underline;
}

@media (max-width: 500px) {
  .content h2 {
    font-size: 8vw;
    line-height: 8vw;
  }

  .content h3 {
    font-size: 1.5em;
  }

  .content h5 {
    font-size: 1em;
    margin: 20px 0px;
  }

  .tkpBTN {
    font-size: 1em;
  }
}
.bottom-progress-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  width: 100%;
  height: 50px;
  z-index: 99;
  opacity: 0.6;
}

.progress-container-div {
  display: block;
  text-align: center;
  margin: 5px auto 0 auto;
}

.progress-container-div .progress-block {
  display: inline-block;
  margin: 0 10px;
}

.progress-container-div .progress-mark {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #fff;
  background: none;
  text-align: center;
  position: relative;
  top: 8px;
}

.progress-container-div .progress-label {
  color: #fff;
  display: inline-block;
  margin-left: 5px;
  font-size: 1em;
}

.progress-block.progress-block-crossed .progress-mark {
  background: url("../img/checkmarkno.png") center center;
  background-size: cover;
}

.progress-block.progress-block-checked .progress-mark {
  background: url("../img/checkmark.png") center center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .progress-container-div {
    margin: 5px auto 0 auto;
  }
}
.socials-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* Base button */
.social-btn {
  background: var(--primary);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  color: var(--bg-main);
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.85rem;
  text-align: center;
  font-weight: 600;
}

/* Icon */
.social-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Modifica: Applica l'hover SOLO se il dispositivo supporta l'hover (mouse) */
@media (hover: hover) {
  .social-btn:hover {
    background-color: var(--accent);
    color: var(--stay-dark);
    /* Cambiato in --stay-dark per avere l'icona nera */
  }

  .social-btn:hover svg path {
    fill: currentColor;
  }
}
.social-btn:active {
  background-color: var(--accent);
  color: var(--bg-main);
  /* Cambiato da --stay-dark a --bg-main */
}

/* Focus visibile */
.social-btn:focus-visible {
  outline: 3px solid #000;
  outline-offset: 4px;
}

/* Tooltip decorativo */
.social-btn::before {
  content: attr(aria-label);
  position: absolute;
  bottom: 100%;
  background: var(--accent);
  color: var(--stay-dark);
  padding: 0.4em 0.8em;
  border-radius: 1em;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.social-btn:hover::before,
.social-btn:focus-visible::before {
  opacity: 1;
  transform: translateY(-6px);
}

/* Visually hidden */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Mobile: tooltip sempre visibile */
@media (max-width: 768px) {
  .social-btn::before {
    opacity: 1;
    transform: translateY(-6px);
    position: static;
    margin-top: 8px;
    display: block;
    background: none;
    color: var(--neutral);
    box-shadow: none;
    padding: 0.3em 0.6em;
    border-radius: 0.5em;
  }

  .social-btn {
    flex-direction: column;
    height: auto;
    padding: 8px 8px 15px 8px;
    border-radius: 10px;
    width: 33%;
  }
}

/*# sourceMappingURL=app.css.map */
