*{box-sizing:border-box;}
body{margin:0;font-family:Poppins;background:#f7f7fb;color:#333;}
.container{max-width:1200px;margin:auto;padding:0 20px;}

.header{background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.05);}
.nav{display:flex;align-items:center;justify-content:space-between;padding:20px 0;}
.logo{height:60px;}
nav a{margin:0 12px;text-decoration:none;color:#555;font-weight:500;}
nav .active{color:#ff3b7a;}
.btn{background:#ff3b7a;color:#fff;padding:10px 18px;border-radius:25px;}
.btn-outline{border:2px solid #ff3b7a;padding:10px 18px;border-radius:25px;color:#ff3b7a;}


/* HERO NUOVA CON IMMAGINE */
.hero {
  padding: 100px 0;

  background-color: #f3e9df;

  background-image: url('../images/hero.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

.hero-text h1{font-size:40px;line-height:1.3;}
.hero-text span{color:#ff3b7a;}
.hero-img{width:450px;}


.hero-inner {
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 520px;
  z-index: 2;
}





.info{background:#fff;padding:60px 0;text-align:center;}
.info-grid{display:flex;gap:20px;margin-top:30px;}
.info-item{flex:1;background:#f3f3f7;padding:20px;border-radius:12px;}

.funds{padding:60px 0;text-align:center;}
.cards{display:flex;gap:20px;margin-top:30px;}
.card{flex:1;background:#fff;padding:30px;border-radius:15px;box-shadow:0 5px 15px rgba(0,0,0,.05);}
.card strong{font-size:28px;color:#ff3b7a;display:block;}

.impact{background:linear-gradient(90deg,#4b2c6f,#7a4bb3);color:#fff;padding:60px 0;text-align:center;}
.impact-grid{display:flex;justify-content:space-around;margin-top:20px;font-weight:600;}

.footer{background:#2b1d4d;color:#fff;text-align:center;padding:30px 0;}

/* NAVBAR */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

/* WRAPPER */
.nav-wrapper {
  width: 100%;
  padding: 30px 80px; /* spazio ai lati */
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;
  display: block;
}



/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  text-decoration: none;
  font-size: 15px;   
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #4b2c6f; 
  position: relative;
}

/* ACTIVE */
.menu a.active {
  color: #ff3b7a;
}

/* LINEA sotto HOME */
.menu a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff3b7a;
}

/* CTA DONA */
.btn-dona {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  background: #ff3b7a;
  color: white;

  padding: 12px 22px;
  border-radius: 10px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.2s;

  white-space: nowrap;
}


/* HERO TESTO */
.hero-title {
  font-size: 48px;
  line-height: 1.25;
  font-weight: 600;
  color: #2c2c54; /* violetto scuro */
}

/* SOLO PARTE ROSA */
.hero-title span {
  color: #ff3b7a;
}

/* SOTTOTITOLO */
.hero-subtitle {
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.6;
  color: #4b2c6f; /* stesso violetto navbar */
}



/* SEZIONE */
.atassia {
  background: #fff;
  padding: 30px 0;
}

/* WRAPPER */
.atassia-wrapper {
  width: 100%;
  padding: 0 80px; /* come navbar */
  display: flex;
  gap: 60px;
}

/* LEFT */
.atassia-left {
  width: 30%;
}

.atassia-left h2 {
  font-size: 26px;
  color: #4b2c6f;
  margin-bottom: 20px;
}

.atassia-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.link {
  color: #4b2c6f;
  font-weight: 500;
  text-decoration: none;
}

/* RIGHT */
.atassia-right {
  width: 70%;
  display: flex;
  gap: 0; /* importante per le linee */
}


.item {
  flex: 1 1 25%;
  max-width: 25%;
  text-align: center;
  padding: 0 20px;
  position: relative;
}



.item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;   /* leggermente più fuori */
  top: 10%;       /* più in alto */
  height: 80%;    /* più lunga */
  width: 2px;     /* più spessa */
  background: #dcdcdc; /* più visibile */
}

.item:first-child::before {
  content: "";
  position: absolute;
  left: -15px;   /* lato sinistro */
  top: 10%;
  height: 80%;
  width: 2px;
  background: #dcdcdc;
}



/* ICONA */
.item img {
  width: 45px;
  margin-bottom: 10px;
}

/* TITOLI */
.item h3 {
  font-size: 16px;        /* più grande */
  font-weight: 600;       /* più forte */
  color: #4b2c6f;         /* rosa coerente */
  margin-bottom: 10px;
  letter-spacing: 0.5px;  /* leggero respiro */
}

/* TESTO */
.item p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}


.icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;

  background: rgba(255, 59, 122, 0.1);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}


.icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;

  filter: brightness(0) saturate(100%) 
          invert(36%) sepia(82%) 
          saturate(400%) hue-rotate(300deg);
}


/* SECTION */
.funds {
  background: #f8f3fb;
  padding: 20px 80px 20px;
}

/* HEADER */
.funds-header {
  text-align: center;
  margin-bottom: 50px;
}

.funds-header h2 {
  font-size: 42px;
  color: #4b2c6f;
  margin-bottom: 10px;
}

.funds-header p {
  color: #4b2c6f;
  font-size: 16px;
}

/* CARDS */
.funds-cards {
  display: flex;
  gap: 30px;
}

/* SINGLE CARD */
.fund-card {
  flex: 1;
  background: white;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.fund-card img {
  width: 60px;
}

/* PERCENT */
.percent {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* TITLE */
.fund-card h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* TEXT */
.fund-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #444;
  flex-grow: 1;
}

/* PROGRESS */
.progress {
  height: 8px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
}

.bar {
  height: 100%;
  width: 75%;
  border-radius: 20px;
}

/* COLORS */
.purple .percent,
.purple h3 {
  color: #6a32c9;
}

.purple .bar {
  background: #6a32c9;
}

.pink .percent,
.pink h3 {
  color: #ff3b7a;
}

.pink .bar {
  width: 15%;
  background: #ff3b7a;
}

.blue .percent,
.blue h3 {
  color: #246bff;
}

.blue .bar {
  width: 5%;
  background: #246bff;
}

.green .percent,
.green h3 {
  color: #3dbb63;
}

.green .bar {
  width: 5%;
  background: #3dbb63;
}

/* BUTTON */
.funds-button {
  text-align: center;
  margin-top: 50px;
}

.funds-button a {
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid #8a5ccf;
  border-radius: 14px;
  text-decoration: none;
  color: #4b2c6f;
  font-weight: 600;
}


/* VIOLA */
.purple img {
  filter: brightness(0) saturate(100%)
          invert(23%) sepia(89%)
          saturate(2200%)
          hue-rotate(255deg);
}

/* ROSA */
.pink img {
  filter: brightness(0) saturate(100%)
          invert(36%) sepia(82%)
          saturate(400%)
          hue-rotate(300deg);
}

/* BLU */
.blue img {
  filter: brightness(0) saturate(100%)
          invert(31%) sepia(98%)
          saturate(2500%)
          hue-rotate(215deg);
}

/* VERDE */
.green img {
  filter: brightness(0) saturate(100%)
          invert(53%) sepia(70%)
          saturate(500%)
          hue-rotate(85deg);
}

/* FOOTER */
.footer {
background: #341e5c;
  padding: 18px 60px;
  color: white;
}

/* CONTAINER */
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

/* LOGO */
.footer-logo img {
  width: 320px;
  display: block;
}

/* COLONNE */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 600;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.95;
  margin: 0;
}

.footer-col span {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.7;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.social-icons a {
  width: 32px;
  height: 32px;

  border-radius: 50%;
  background: white;

  color: #4b2c6f;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.2s;
}

.social-icons a:hover {
  transform: translateY(-2px);
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  text-decoration: none;
  font-size: 12px;
}

/* BUTTON */
.footer-button a {
  display: inline-block;
  background: #ff3b7a;
  color: white;

  padding: 12px 22px;
  border-radius: 10px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  transition: 0.2s;
}

.footer-button a:hover {
  transform: translateY(-2px);
}

.social-icons img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* =========================
   RESPONSIVE MOBILE/TABLET
========================= */

@media (max-width: 1024px) {

  .nav-wrapper {
    padding: 20px 30px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .logo img {
    height: 70px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .menu a {
    font-size: 13px;
  }

  .btn-dona {
    padding: 10px 18px;
    font-size: 13px;
  }

  .hero {
    padding: 70px 0;
    background-size: 50%;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .atassia-wrapper {
    flex-direction: column;
    padding: 0 30px;
    gap: 40px;
  }

  .atassia-left,
  .atassia-right {
    width: 100%;
  }

  .funds {
    padding: 30px;
  }

  .funds-cards {
    flex-wrap: wrap;
  }

  .fund-card {
    min-width: calc(50% - 15px);
  }

  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }
}


@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .nav-wrapper {
    flex-direction: column;
    padding: 15px 20px;
  }

  .logo img {
    height: 60px;
  }

  .menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .menu a {
    font-size: 12px;
  }

  .btn-dona {
    margin-top: 10px;
  }

  .hero {
    background-position: bottom center;
    background-size: 95%;
    padding: 50px 20px 340px;
  }

  .hero-inner {
    justify-content: center;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .atassia {
    padding: 40px 0;
  }

  .atassia-wrapper {
    padding: 0 20px;
  }

  .atassia-left h2 {
    font-size: 24px;
    text-align: center;
  }

  .atassia-left p,
  .link {
    text-align: center;
    display: block;
  }

  .atassia-right {
    flex-direction: column;
  }

  .item {
    max-width: 100%;
    width: 100%;
    padding: 25px 0;
  }

  .item::before,
  .item::after {
    display: none;
  }

  .icon {
    width: 80px;
    height: 80px;
  }

  .icon img {
    width: 52px;
    height: 52px;
  }

  .funds {
    padding: 35px 20px;
  }

  .funds-header h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .funds-header p {
    font-size: 14px;
  }

  .funds-cards {
    flex-direction: column;
  }

  .fund-card {
    width: 100%;
  }

  .fund-card h3 {
    font-size: 20px;
  }

  .percent {
    font-size: 44px;
  }

  .footer {
    padding: 25px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .footer-logo img {
    width: 240px;
    margin: auto;
  }

  .footer-col {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-button a {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   CHI SIAMO
========================= */

.chi-siamo {
  background: #f3e9df;
  padding: 90px 80px;
}

.chi-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.chi-text {
  width: 50%;
}

.chi-text h1 {
  font-size: 48px;
  line-height: 1.25;
  color: #2c2c54;
  font-weight: 600;
  margin-bottom: 30px;
}

.chi-text h1 span {
  color: #ff3b7a;
  font-weight: 700;
}

.chi-text h2 {
  font-size: 48px;
  line-height: 1.25;
  color: #2c2c54;
  font-weight: 600;
  margin-bottom: 30px;
}

.chi-text h2 span {
  color: #ff3b7a;
  font-weight: 700;
}

.divider {
  width: 90px;
  height: 3px;
  background: #ff3b7a;
  margin-bottom: 35px;
}

.chi-text p {
  font-size: 28px;
  line-height: 1.6;
  color: #2c2c54;
  margin: 0;
}

.chi-text .highlight {
  color: #ff3b7a;
  font-weight: 700;
}

.chi-image {
  width: 45%;
}

.chi-image img {
  width: 100%;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {

  .chi-siamo {
    padding: 60px 20px;
  }

  .chi-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .chi-text,
  .chi-image {
    width: 100%;
  }

  .chi-text {
    text-align: center;
  }

  .divider {
    margin: 30px auto;
  }

  .chi-text h1,
  .chi-text h2 {
    font-size: 36px;
  }

  .chi-text p {
    font-size: 22px;
  }
}

/* =========================
   RICERCA
========================= */

.ricerca {
  background: #f3e9df;
  padding: 90px 80px;
}

.ricerca-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.ricerca-left,
.ricerca-right {
  width: 30%;
}

.ricerca-image {
  width: 40%;
}

.ricerca-image img {
  width: 100%;
  display: block;
}

/* TITOLI IDENTICI A CHI SIAMO */
.ricerca h1 {
  font-size: 48px;
  line-height: 1.25;
  color: #2c2c54;
  font-weight: 600;
  margin-bottom: 30px;
}

/* TESTI IDENTICI A CHI SIAMO */
.ricerca p {
  font-size: 28px;
  line-height: 1.6;
  color: #2c2c54;
  margin: 0 0 28px;
}

/* ROSA IDENTICO */
.ricerca .highlight {
  color: #ff3b7a;
  font-weight: 700;
}

/* CARD MEDICI */
.doctor-card {
  margin-bottom: 35px;
}

.doctor-card h3 {
  font-size: 28px;
  line-height: 1.4;
  color: #ff3b7a;
  margin-bottom: 14px;
  font-weight: 700;
}

.doctor-card p {
  font-size: 28px;
  line-height: 1.6;
  color: #2c2c54;
}

/* DIVIDER IDENTICO */
.ricerca .divider {
  width: 90px;
  height: 3px;
  background: #ff3b7a;
  margin-bottom: 35px;
}

/* MOBILE */
@media (max-width: 768px) {

  .ricerca {
    padding: 60px 20px;
  }

  .ricerca-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .ricerca-left,
  .ricerca-right,
  .ricerca-image {
    width: 100%;
  }

  .ricerca-left,
  .ricerca-right {
    text-align: center;
  }

  .ricerca h1 {
    font-size: 36px;
  }

  .ricerca p,
  .doctor-card p {
    font-size: 22px;
  }

  .doctor-card h3 {
    font-size: 24px;
  }

  .ricerca .divider {
    margin: 30px auto;
  }
}

/* TESTO RICERCA */
.research-text h1 {
  font-size: 48px;
  line-height: 1.25;
  font-weight: 600;
  color: #2c2c54;
  margin-bottom: 25px;
}

.research-text h1 span {
  color: #ff3b7a;
}

.research-text h2 {
  font-size: 40px;
  line-height: 1.35;
  font-weight: 500;
  color: #2c2c54;
  margin-bottom: 35px;
}

.research-text h2 span {
  color: #ff3b7a;
}

.research-text p {
  font-size: 28px;
  line-height: 1.6;
  color: #2c2c54;
  margin-bottom: 25px;
}

.research-text .highlight {
  color: #ff3b7a;
  font-weight: 600;
}

/* =========================
   TRASPARENZA
========================= */

.chi-image img {
  width: 100%;
  display: block;
}

/* =========================
   ATASSIA HERO IMAGE
========================= */

.atassia-hero-img {
  width: 58%;
  position: relative;
  top: -60px;
}

.atassia-hero-img img {
  width: 115%;
  max-width: none;
  display: block;
}

/* ======================================================
   EVENTI GRID
====================================================== */

.eventi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    padding: 40px 60px 20px;
    background: #f3e9df;
    box-sizing: border-box;
}

.evento-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;

    gap: 20px;
}

.evento-image-box {
    width: 100%;
    text-align: center;
    flex-shrink: 0;
}

.evento-locandina {
    width: 100%;
    max-width: 100%;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.evento-locandina:hover {
    transform: scale(1.02);
}

.evento-info-side {
    width: 100%;
    text-align: center;
}

.evento-location-text {
    font-size: 18px;
    line-height: 1.8;
    color: #341e5c;
}

.evento-location-text strong {
    color: #ff3b7a;
    font-weight: 700;
}

.evento-data {
    color: #ff3b7a;
    font-weight: 700;
    font-size: 24px;
}

.evento-orario {
    font-size: 18px;
    color: #341e5c;
}

.evento-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 24px;
}

.evento-link {
    width: 58px;
    height: 58px;
    background: #f7f7f7;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.evento-link:hover {
    transform: translateY(-4px);
    background: #ff3b7a;
}

.evento-link img {
    width: 28px;
    height: 28px;
    transition: filter 0.25s ease;
}

.evento-link:hover img {
    filter: brightness(0) invert(1);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1100px) {

    .eventi-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .evento-card {
        flex-direction: column;
        text-align: center;
    }

    .evento-locandina {
        max-width: 320px;
    }

}

/* ======================================================
   POPUP FULLSCREEN
====================================================== */

.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(0,0,0,0.94);
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.modal-image {
    max-width: 95%;
    max-height: 95%;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transition: transform 0.1s ease;
}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 768px) {

    .evento-locandina {
        max-width: 320px;
    }

}

/* ======================================================
   NEWS INTRO SPACING
====================================================== */

.news-intro {
    padding-top: 20px !important;
}

.video-btn {
    display: table;
    margin: 30px auto;
}

/* =========================================================
   GALLERY EVENTI
========================================================= */

.gallery-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(0,0,0,0.5);

    border: none;

    color: white;

    font-size: 42px;

    width: 60px;

    height: 60px;

    cursor: pointer;

    z-index: 9999;

    border-radius: 50%;
}

.gallery-arrow.left {

    left: 30px;
}

.gallery-arrow.right {

    right: 30px;
}

.gallery-close {

    position: absolute;

    top: 20px;

    right: 20px;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(0,0,0,0.65);

    border-radius: 50%;

    color: white;

    font-size: 30px;

    cursor: pointer;

    z-index: 10000;

    backdrop-filter: blur(4px);
}


@media (max-width: 768px) {

    .gallery-close {

        top: 80px;

        right: 16px;

        width: 58px;

        height: 58px;

        font-size: 34px;
    }
}



/* ======================================================
   PAGINAZIONE EVENTI
====================================================== */

.event-page {

    display: none;
}

.event-page.active {

    display: block;
}

.event-pagination {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    padding: 10px 0 50px;

    background: #f3e9df;
}

.pagination-dot {

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: rgba(52,30,92,0.25);

    cursor: pointer;

    transition: all 0.25s ease;
}

.pagination-dot.active {

    background: #ff3b7a;

    transform: scale(1.2);
}


/* ======================================================
   TRASPARENZA
====================================================== */

.trasparenza-right {

    width: 45%;

    display: flex;

    flex-direction: column;

    gap: 30px;
}

.trasparenza-image {

    background: #ffffff;

    border-radius: 28px;

    padding: 25px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.trasparenza-image img {

    width: 100%;

    display: block;
}

.runts-box {

    background: #ffffff;

    border-radius: 28px;

    padding: 30px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.runts-box h3 {

    font-size: 28px;

    color: #ff3b7a;

    margin-bottom: 20px;
}

.runts-box p {

    font-size: 20px;

    line-height: 1.7;

    color: #341e5c;

    margin: 0;
}

.runts-box span {

    color: #ff3b7a;

    font-weight: 700;
}

.documenti-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 22px;
}

.documento-card {

    background: #ffffff;

    border-radius: 24px;

    padding: 24px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.documento-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.documento-card img {

    width: 52px;

    margin-bottom: 18px;
}

.documento-card h4 {

    font-size: 24px;

    color: #ff3b7a;

    margin-bottom: 12px;
}

.documento-card p {

    font-size: 17px;

    line-height: 1.6;

    color: #341e5c;

    margin: 0;
}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 768px) {

    .trasparenza-right {

        width: 100%;
    }

    .runts-box p {

        font-size: 18px;
    }

    .documento-card h4 {

        font-size: 22px;
    }

    .documento-card p {

        font-size: 16px;
    }
}
