/* Inserisci i file .woff2 nelle rispettive cartelle e aggiorna i nomi dei file.
   Manteniamo solo woff2 per massime prestazioni. */

/* Epilogue */

@font-face {
  font-family: 'Epilogue';

  src: url('../fonts/Epilogue/Epilogue-Regular.woff2') format('woff2');

  font-weight: 400;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'Epilogue';

  src: url('../fonts/Epilogue/Epilogue-Bold.woff2') format('woff2');

  font-weight: 700;

  font-style: normal;

  font-display: swap;
}

/* Source_Sans_3 */

@font-face {
  font-family: 'Source_Sans_3';

  src: url('../fonts/Source_Sans_3/SourceSans3-Regular.woff2') format('woff2');

  font-weight: 400;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'Source_Sans_3';

  src: url('../fonts/Source_Sans_3/SourceSans3-Bold.woff2') format('woff2');

  font-weight: 700;

  font-style: normal;

  font-display: swap;
}

:root {
  --color-primary: #044B2E;
  --color-secondary: #9AB8AC;
  --color-neutral: #E4E4E4;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-rating: #E6B800;
  /* Radius variables (mobile-first) */
  --radius-full: 100px;
  --radius-xl: 12px;
  --radius-md: 8px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-fill: 32px;
  --space-fill-xl: 52px;
}

/* Base font sizing: 16px mobile, 18px desktop */

html {
  font-size: 100%;
  /* 16px */
  box-sizing: border-box;
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing:inherit
}

/* Body and default text */

body {
  font-family: 'Source_Sans_3', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

html, body {
  overflow-x: hidden;
}

/* Headings use Epilogue and are bold */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Epilogue', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.10;
  color: var(--color-black);
}

h4{
  line-height: 1.4;
}

/* Heading scale (mobile first), rem basati su 16px; override desktop con media query (18px) */

h1 {
  font-size: 2.5rem;
  /* 40px */
}

h2 {
  font-size: 2rem;
  /* 32px */
}

h3 {
  font-size: 1.5rem;
  /* 24px */
}

h4 {
  font-size: 1.125rem;
  /* 18px */
}

p, h1, h2, h3, h4 {
  margin-top: 0;
  margin-bottom: 0;
}

/* Title and Subtitle utility classes */

.float-icon{
  position: fixed;
  bottom: 2rem;
  right: 2.2rem;
  z-index: 999;
  background-color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  will-change: transform;
}

.float-icon:hover{
  transform: scale(1.1);
}

.title {
  font-family: 'Epilogue', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  font-size: 3.1rem;
  /* 56px */
}

.subtitle {
  font-family: 'Epilogue', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  font-size: 1.125rem;
  /* 18px */
}

/* Color helper classes (opzionali) */

.text-primary {
  color: var(--color-primary);
}

.bg-primary {
  background-color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

.text-neutral {
  color: var(--color-neutral);
}

.bg-neutral {
  background-color: var(--color-neutral);
}

.text-rating {
  color: var(--color-rating);
}

.bg-rating {
  background-color: var(--color-rating);
}

/* Radius helper classes (opzionali) */

.rounded-full {
  border-radius: var(--radius-full);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.c-icon{
  width: 42px;
  height: 42px;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Component: Button */

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: 'Source_Sans_3', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, border-radius 0.3s ease;
  will-change: transform;
}

.c-btn:hover{
  transform: scale(1.1);
}

.c-btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.c-btn--secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.c-btn--ghost {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-white);
}

.custom-logo{
  width: 60px !important;
  height: auto !important;
}

header{
  background-color: var(--color-neutral);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  overflow: hidden;
  position: fixed;
  top: var(--space-sm);
  left: 1.0rem;
  right: 1.0rem;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

#sideMenu{
  z-index: 999;
  border-radius: var(--radius-xl);
}

.menu-item a{
  color: inherit;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 2px;
}

.menu-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.menu-item a:hover::after {
  width: 100%;
}

footer .menu-item a{
  color: var(--color-white);
}

.main-menu a.active {
  color: var(--color-primary);
  font-weight: 700;
}

.c-hero, footer{
  background-color: var(--color-primary);
  padding: var(--space-md);
  border-radius: var(--radius-xl);
}

.c-hero{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-card__value{
  background-color: var(--color-primary);
  padding: var(--space-md);
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#section-values{
  background-color: var(--color-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-md);
}

.c-title__section{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: var(--space-fill-xl);
}

.c-hero {
  position: relative;
  min-height: 80vh;
}

.c-hero__image {
  position: absolute;
  right: -1.5rem;
  bottom: 0;
  height: 106%;
  width: auto;
  opacity: 0;
  z-index:600
  /* Inizialmente invisibile */
  transition: opacity 0.3s ease-in;
}

.c-hero__image.loaded {
  opacity: 1;
  /* Visibile quando caricata */
}

/* Hero content styling con fade-in */

.c-hero__content {
  background: rgba(154, 184, 172, 0.5);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  width: 100%;
  z-index: 100;
  opacity: 0;
  /* Inizialmente invisibile */
  transition: opacity 0.5s ease-in 0.2s;
  /* Inizia dopo l'immagine */
}

.c-hero__content.loaded {
  opacity: 1;
}

.c-card__value__paragraph{
  color: var(--color-white);
}

/* Fade-in titolo footer */

.c-footer__title {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.c-footer__title.loaded {
  opacity: 1;
}

/* Fade-in blocco chi sono */

.c-container__chi__sono {
  opacity: 0;
  transition: opacity 0.6s ease-in;
}

.c-container__chi__sono.loaded {
  opacity: 1;
}

.c-hero__body {
  margin-bottom: var(--radius-xl);
}

.c-hero__title, .c-footer__title {
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.c-hero__text, .c-footer__text {
  margin: 0;
  color: var(--color-white);
}

/* Tab Navigation */

.c-nav-item__chi__sono {
  cursor: pointer;
  transition: none;
}

/* .c-nav-item__chi__sono:hover:not(.active) {
	opacity: 0.7;
} */

.c-nav-item__chi__sono.active {
  cursor: default;
}

.c-card__value__title{
  color: var(--color-white);
}

.c-card__service, .c-card__step{
  border-radius: var(--radius-md);
  padding: var(--space-md);
  background-color: var(--color-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  .c-card__service__img, .c-card__step__img{
    border-radius: var(--radius-md);
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto var(--space-xl);
  }
  .c-card__service__hgroup{
    margin-bottom: var(--space-xl);
    .c-card__service__title, .c-card__step__hgroup .c-card__step__title{
      margin-top: 0;
      margin-bottom: var(--space-sm);
    }
  }
}

.c-card__step{
  min-height: 45vh;
}

.c-card__step:nth-of-type(2){
  background-color: var(--color-primary);
  .c-card__step__hgroup .c-card__step__title, .c-card__step__hgroup p{
    color: var(--color-white);
  }
}

.c-card-info{
  background-color: var(--color-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
}

.c-card-info .c-card-content{
  margin-bottom: var(--space-lg);
}

.c-card-info .c-card-hgroup{
margin-bottom: var(--space-sm);
}

.c-card-info__title, .c-card-info__subtitle{
  color: var(--color-primary);
}

.c-card-info__info, .c-card-info__paragraph{
  color: var(--color-white);
}

.c-icon__svg{
  position: relative;
  top: 3px;
}

.c-nav__chi__sono{
  background-color: var(--color-neutral);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  width: 100%;
  margin: 0 auto;
  .c-nav-item__chi__sono{
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    width: 140px;
    text-align: center;
    cursor: pointer;
    transition: none;
  }
  .c-nav-item__chi__sono:hover{
    background-color: var(--color-secondary);
    color: var(--color-white);
  }
  .c-nav-item__chi__sono.active{
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
}

.c-content__chi__sono{
  border: solid 2px var(--color-primary);
  padding: var(--space-md);
  height: 80vh;
  border-radius: var(--radius-xl);
}

.c-container__chi__sono__image{
  width: 100%;
  height: 250px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-md);
}

.c-tab-content__chi__sono {
  display: none !important;
  height: 100%;
}

.c-tab-content__chi__sono.active {
  display: grid !important;
}

.c-card__graduations{
  padding: var(--space-md);
  background-color: var(--color-white);
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
}

.divider {
  width: 100%;
  height: 2px;
  background-color: var(--color-neutral);
  border: none;
  margin: 1rem 0;
  /* opzionale */
}

.c-card__details{
  color: var(--color-primary);
  font-weight: 600;
}

.c-card__graduations-works{
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: 1px 4px 5px rgba(0,0,0,0.1);
  overflow: hidden;
}

.c-card__graduations-works svg{
  width: 100%;
  height: auto;
}

.c-card__graduations-works__link:hover .c-card__graduations-works__title, .c-card__contacts:hover a{
  text-decoration: underline;
}

.reviews-section{
  background-color: var(--color-primary);
  padding: var(--space-lg) 0;
  border-radius: var(--radius-xl);
}

.c-reviews__text{
  color: var(--color-white);
}

.slider{
  width: 100%;
  height: var(--height);
  overflow: hidden;
}

.slider .list{
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.slider .list .item{
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 50s linear infinite;
  animation-delay: calc((((50s / var(--quantity)) * (var(--position) - 1)) - 50s))!important;
  border-radius:var(--radius-xl);
  overflow: hidden;
}

.slider .list .item img{
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.slider .list .review-item img{
  width: 15%;
  height:100%
  border-radius: var(--radius-xl);
  object-fit: cover;
}

@keyframes autoRun{
  from{
    left: 100%;
  }

  to{
    left: calc(var(--width) * -1);
  }
}

/* Stili per le review */

.review-item {
  width: var(--width);
  min-height: var(--height);
  background-color: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Avatar circolare */

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: var(--space-md);
  flex-shrink: 0;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-name {
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
  font-size: 1.1rem;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  color: #666;
}

.review-source p {
  margin: 0;
}

.review-source a {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #044B2E;
  font-weight: 600;
}

.review-source a img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.review-rating .score {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.review-rating span:not(.score):not(.review-date) {
  color: #666;
  font-size: 1.2rem;
}

.review-date {
  color: #999;
  font-size: 0.9rem;
}

.review-content {
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.review-content .read-more {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.review-content .read-more:hover {
  text-decoration: underline;
}

/* Animazione specifica per le review */

.reviews-section .slider .list .item {
  animation: autoRunReviews var(--duration, 80s) linear infinite !important;
  animation-delay: calc((var(--duration, 80s) / var(--quantity)) * (var(--position) - 1) - var(--duration, 80s)) !important;
}

@keyframes autoRunReviews {
  from {
    left: 100%;
  }

  to {
    left: calc(var(--width) * -1);
  }
}

/* Responsive per le review */

@media (max-width: 768px) {
  .slider {
    --width: 350px !important;
    --height: auto !important;
  }

  .review-item {
    padding: var(--space-md);
    min-height: auto;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: var(--space-sm);
  }

  .review-name {
    font-size: 1rem;
  }

  .review-rating .score {
    font-size: 1.3rem;
  }

  .review-content {
    font-size: 0.9rem;
  }
}

.form-row{
  display: flex;
  gap:var(--space-lg);
  p{
    width: 100%;
  }
}

#wpcf7-f143-o1{
  width: 100%;
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-xl);
}

#wpcf7-f143-o1 form h2 {
  color: var(--color-white);
}

#wpcf7-f143-o1 form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

#wpcf7-f143-o1 form input:not([type="checkbox"]):not([type="submit"]),  #wpcf7-f143-o1 form textarea{
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  border: none;
  width: 100%;
  margin-top: 4px;
  color: var(--color-secondary);
}

#wpcf7-f143-o1 form input::-moz-placeholder, #wpcf7-f143-o1 form textarea::-moz-placeholder{
  color: var(--color-secondary);
  font-family: 'Source_Sans_3', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
}

#wpcf7-f143-o1 form input::placeholder, #wpcf7-f143-o1 form textarea::placeholder{
  color: var(--color-secondary);
  font-family: 'Source_Sans_3', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
}

.wpcf7-list-item.first.last{
  margin: 0;
}

#wpcf7-f143-o1 form input:not([type="submit"]):focus-visible,
#wpcf7-f143-o1 form textarea:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

#wpcf7-f143-o1 form input[type="date"]::-webkit-calendar-picker-indicator {
  fill: var(--color-secondary);
  color: var(--color-secondary);
}

.float-icon.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* Opzionale: scivola verso il basso */
}

.wpcf7-submit{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: 'Source Sans 3', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  background-color: var(--color-white);
  color: var(--color-primary);
  cursor: pointer;
}

.form-privacy p{
  display: flex;
  gap:2px;
}

.form-privacy p span a{
  text-decoration: none;
  color: var(--color-white);
}

.form-privacy p span a:hover{
  text-decoration:underline;
  color: var(--color-white);
}

.position-img{
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

footer{
  color: var(--color-white);
  padding: var(--space-xl) var(--space-md);
}

/* Banner avviso minori */

.minor-warning-banner {
  background-color: var(--color-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
}

/* Desktop: larghezza come il testo */

@media (min-width: 769px) {
  .minor-warning-banner {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile: larghezza piena con padding del sito */

@media (max-width: 900px) {
  .minor-warning-banner {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
}

.minor-warning-banner .c-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minor-warning-banner .c-icon svg {
  width: 20px;
  height: 18px;
  fill: var(--color-primary);
}

.minor-warning-banner h4 {
  color: var(--color-primary);
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.icon-social{
  background-color: var(--color-white);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-full);
  a{
    position: relative;
    top: 3px;
  }
}

.carousel {
  display: flex;
  gap: 1rem;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem;
  anchor-name: --carousel;
  scroll-marker-group: after;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel::scroll-button(right), .carousel::scroll-button(left){
  content: '';
  border: none;
  background-color: var(--color-white);
  font-size: 3rem;
  color: white;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  padding-bottom: .1rem;
  cursor: pointer;
  translate: -100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-top: var(--space-xl);
  background: no-repeat center/30% url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='38' viewBox='0 0 22 38' fill='none'><path d='M2.5 35L19.5 19L2.5 3' stroke='%23044B2E' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  position: fixed;
  position-anchor: --carousel;
  position-area: right top;
}

.carousel::scroll-button(right):disabled, .carousel::scroll-button(left):disabled{
  opacity: 0.5;
  cursor: auto;
}

.carousel::scroll-button(left){
  content: '';
  translate: 500%;
  background: no-repeat center/30%
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='38' viewBox='0 0 22 38' fill='none'><path d='M19.5 3L2.5 19L19.5 35' stroke='%23044B2E' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  position-area: left top;
}

.card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
}

#cmplz-manage-consent{
  position: absolute;
  bottom: 0;
  right: 0;
}

#cmplz-manage-consent .cmplz-btn{
  background-color: var(--color-primary)!important;
  color: var(--color-white)!important;
}

@media (min-width: 1024px) {
  :root {
    --radius-xl: 32px;
    --radius-md: 18px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-fill: 56px;
    --space-fill-xl: 92px;
  }

  html {
    font-size: 112.5%;
    /* 18px */
  }

  h1 {
    font-size: 4.4444rem;
    /* 80px @ 18px base */
  }

  h2 {
    font-size: 3.1111rem;
    /* 56px @ 18px base */
  }

  h3 {
    font-size: 2.2222rem;
    /* 40px @ 18px base */
  }

  h4 {
    font-size: 1.6rem;
    /* 32px @ 18px base */
  }

  .title {
    font-size: 3.3rem;
  }

  .subtitle {
    font-size: 1.7778rem;
  }

  .c-btn {
    font-size: 18px;
  }

  .c-hero__content {
    width: 50%;
  }

  .c-title__section{
    width: 55%;
  }

  .carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    overflow: visible;
    /* tolgo lo scroll */
    scroll-snap-type: none;
  }

  .card {
    flex: none;
    width: 100%;
  }

  .carousel::scroll-button(right), .carousel::scroll-button(left){
    display: none;
  }

  .c-nav__chi__sono{
    width: 40%;
  }

  .c-content__chi__sono{
    height: 55vh;
  }

  header{
    left: 1.4rem;
    right: 1.4rem;
  }

  .c-container__chi__sono__image{
    height: 100%;
  }
}

/* ========================================
   ANIMAZIONI FADE-IN CON INTERSECTION OBSERVER
   ======================================== */

/* Stato iniziale: elementi nascosti e spostati verso il basso */

.fade-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Stato visibile: elementi appaiono con slide-up */

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Varianti di delay per animazioni sequenziali */

.fade-on-scroll.delay-1 {
  transition-delay: 0.15s;
}

.fade-on-scroll.delay-2 {
  transition-delay: 0.3s;
}

.fade-on-scroll.delay-3 {
  transition-delay: 0.45s;
}

.fade-on-scroll.delay-4 {
  transition-delay: 0.6s;
}

.fade-on-scroll.delay-5 {
  transition-delay: 0.75s;
}

/* Variante con slide da sinistra */

.fade-on-scroll.from-left {
  transform: translateX(-30px);
}

.fade-on-scroll.from-left.visible {
  transform: translateX(0);
}

/* Variante con slide da destra */

.fade-on-scroll.from-right {
  transform: translateX(30px);
}

.fade-on-scroll.from-right.visible {
  transform: translateX(0);
}

/* Variante con zoom leggero */

.fade-on-scroll.scale {
  transform: scale(0.95);
}

.fade-on-scroll.scale.visible {
  transform: scale(1);
}

/* Transizione più lenta per elementi grandi */

.fade-on-scroll.slow {
  transition-duration: 1.2s;
}

/* Animazioni per hero (immersione immediata all'apertura) */

.animate-fade-in-bottom {
  animation: fadeInBottom 0.6s ease-out forwards;
}

.animate-fade-in-bottom-delay {
  animation: fadeInBottom 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(0);
    /* Rimosso movimento verticale per evitare false scroll */
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Placeholder per background lazy loading */

.lazy-bg {
  background-color: var(--color-secondary);
  transition: background-image 0.3s ease-in-out;
}

/* Footer senza animazioni per evitare layout shift */

/* ========================================
   NEWS LAYOUT DINAMICO
   ======================================== */

/* Container base news */

.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

/* 1 NEWS - centrata */

.news-single {
  justify-content: center;
}

.news-single .c-card__service {
  flex: 0 0 auto;
  max-width: 400px;
}

/* 2 NEWS - centrate */

.news-double {
  justify-content: center;
}

.news-double .c-card__service {
  flex: 0 0 calc(50% - 0.5rem);
  max-width: 400px;
}

/* 3 NEWS - come servizi (slider mobile) */

.news-triple {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.news-triple .c-card__service {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

/* 4+ NEWS - grid layout */

.news-multiple {
  justify-content: center;
}

.news-multiple .c-card__service {
  flex: 0 0 calc(33.333% - 0.67rem);
}

 .c-card__value__title{
  margin-bottom:var(--space-sm)
  }

/* Mobile styles */

@media (max-width: 768px) {
  /* 1 NEWS - nasconde bottoni carousel e stessa dimensione card servizi */

  .news-single ~ .carousel-buttons,
  .news-container[data-news-count="1"] ~ .carousel-buttons {
    display: none;
  }

  .news-single .c-card__service {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    border-radius: var(--radius-xl);
  }

  /* 2 NEWS - slider con bottoni spostati */

  .news-double {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }

  .news-double .c-card__service {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
  
  .news-double ~ .carousel-buttons {
    margin-top: var(--space-xl);
  }

  /* 3+ NEWS - tutte slider */

  .news-triple .c-card__service,
  .news-multiple .c-card__service {
    flex: 0 0 100%;
  }
}

/* Desktop styles */

@media (min-width: 769px) {
  /* 3 NEWS - grid inline */

  .news-triple {
    overflow: visible;
    scroll-snap-type: none;
  }

  .news-triple .c-card__service {
    flex: 0 0 calc(33.333% - 0.67rem);
    scroll-snap-align: none;
  }

  /* Nasconde bottoni carousel su desktop per 1,2,3 news */

  .news-single ~ .carousel-buttons,
  .news-double ~ .carousel-buttons,
  .news-triple ~ .carousel-buttons {
    display: none;
  }
}

@media (max-width: 768px) {
  .slider {
    --width: 350px !important;
    --height: 250px !important;
  }

  /* Riduce il movimento su mobile per performance */

  .fade-on-scroll {
    transform: translateY(20px);
  }

  .fade-on-scroll.from-left,
    .fade-on-scroll.from-right {
    transform: translateY(20px);
  }
}

/* Sezione superiore hero */

.hero-top-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

/* Box rating nella hero */

.hero-rating-box {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-sm);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}

.hero-rating-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-rating-line {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-rating-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-rating);
  margin: 0;
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-star {
  width: 20px;
  height: 20px;
  fill: var(--color-rating);
}

.hero-star.empty {
  fill: #e5e5e5;
}

.hero-avatars {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.hero-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-social-icons {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
}

.hero-social-icon {
  background-color: var(--color-white);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-full);
  transition: transform 0.2s ease;
}

.hero-social-icon:hover {
  transform: scale(1.1);
}

.hero-social-icon a {
  position: relative;
  top: 3px;
}

.hero-social-icon svg {
  width: 31px;
  height: 31px;
}

/* Layout responsive per hero rating e social */

@media (min-width: 768px) {
  .hero-top-section {
    flex-direction: row;
    align-items: flex-center;
  }

  .hero-rating-box {
    flex: 1;
    max-width: 300px;
  }

  .hero-social-icons {
    flex-direction: row;
    gap: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .hero-top-section {
    flex-direction: column;
    align-items: start;
    margin-bottom: var(--space-md);
  }

  .hero-rating-box {
    width: auto;
    max-width: none;
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
  }

  .hero-social-icons {
    display: none;
  }

  .hero-rating-number {
    font-size: 1.5rem;
  }

  .hero-star {
    width: 16px;
    height: 16px;
  }

  .hero-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}

.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}

.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}

.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}

.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}

.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}

.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}

.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}

.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}

.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}

.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}

.c-card-info p{
color:white;

}

.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}

.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}

.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}

.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}

.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}

.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}

.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}

.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}

.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}

.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}

.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}

.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}

.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}

.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}

.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}

.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}

.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}

.visible {
  visibility: visible;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-\[-3\.7rem\] {
  bottom: -3.7rem;
}

.left-1\/2 {
  left: 50%;
}

.right-\[1rem\] {
  right: 1rem;
}

.top-\[6\.5rem\] {
  top: 6.5rem;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-\[8rem\] {
  margin-bottom: 8rem;
}

.mb-\[var\(--space-lg\)\] {
  margin-bottom: var(--space-lg);
}

.mb-\[var\(--space-xl\)\] {
  margin-bottom: var(--space-xl);
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-\[2rem\] {
  margin-top: 2rem;
}

.mt-\[var\(--space-fill-xl\)\] {
  margin-top: var(--space-fill-xl);
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-6 {
  height: 1.5rem;
}

.h-\[25vh\] {
  height: 25vh;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.w-0 {
  width: 0px;
}

.w-8 {
  width: 2rem;
}

.w-\[100\%\] {
  width: 100%;
}

.w-\[15\%\] {
  width: 15%;
}

.w-\[73\%\] {
  width: 73%;
}

.w-\[78\%\] {
  width: 78%;
}

.w-\[92\%\] {
  width: 92%;
}

.w-full {
  width: 100%;
}

.max-w-none {
  max-width: none;
}

.flex-shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-2 {
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-\[0\.8rem\] {
  --tw-translate-y: 0.8rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-45 {
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
  cursor: pointer;
}

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

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.content-center {
  align-content: center;
}

.items-center {
  align-items: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-items-center {
  justify-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-\[1rem\] {
  gap: 1rem;
}

.gap-\[3px\] {
  gap: 3px;
}

.gap-\[5px\] {
  gap: 5px;
}

.gap-\[var\(--space-fill\)\] {
  gap: var(--space-fill);
}

.gap-\[var\(--space-lg\)\] {
  gap: var(--space-lg);
}

.space-y-32 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.border {
  border-width: 1px;
}

.bg-\[var\(--color-neutral\)\] {
  background-color: var(--color-neutral);
}

.bg-\[var\(--color-primary\)\] {
  background-color: var(--color-primary);
}

.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}

.p-0 {
  padding: 0px;
}

.p-2 {
  padding: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-\[var\(--space-sm\)\] {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

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

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-\[var\(--color-primary\)\] {
  color: var(--color-primary);
}

.text-\[var\(--color-white\)\] {
  color: var(--color-white);
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.text-inherit {
  color: inherit;
}

.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.underline {
  text-decoration-line: underline;
}

.no-underline {
  text-decoration-line: none;
}

.opacity-0 {
  opacity: 0;
}

.outline {
  outline-style: solid;
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/* Componenti personalizzati qui se necessario */

.hover\:text-inherit:hover {
  color: inherit;
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:no-underline:hover {
  text-decoration-line: none;
}

@media (min-width: 768px) {
  .md\:bottom-\[-5\.4rem\] {
    bottom: -5.4rem;
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:mb-\[var\(--space-xl\)\] {
    margin-bottom: var(--space-xl);
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:mt-56 {
    margin-top: 14rem;
  }

  .md\:block {
    display: block;
  }

  .md\:inline-block {
    display: inline-block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-\[35vh\] {
    height: 35vh;
  }

  .md\:w-\[60\%\] {
    width: 60%;
  }

  .md\:w-\[62\%\] {
    width: 62%;
  }

  .md\:w-\[76\%\] {
    width: 76%;
  }

  .md\:w-\[8\%\] {
    width: 8%;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:justify-normal {
    justify-content: normal;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:justify-items-end {
    justify-items: end;
  }

  .md\:gap-12 {
    gap: 3rem;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(14rem * var(--tw-space-y-reverse));
  }

  .md\:p-4 {
    padding: 1rem;
  }

  .md\:pr-4 {
    padding-right: 1rem;
  }

  .md\:text-left {
    text-align: left;
  }
}

#menu-item-146{
  display: none !important;
}
#menu-footer{
  flex-wrap: no-wrap;
  }

@media screen and (max-width: 768px) {
  
  .form-privacy p br{
  display:none;
  }
  .c-hero__image {
    height: 102%;
  }
  .float-icon{
  bottom:1.2rem;
    right:1.15rem;
}
  
  .form-privacy p{
  flex-direction:column;
    gap:2px;
  }
  
  #menu-footer{
  flex-wrap: wrap;
   text-align: center;
    align-items:center;
    justify-content:center;
  }
  
  .icon-social-container{
  text-align: center;
    align-items:center;
    justify-content:center;
  }
}

#sezione-sponsors {
  padding-top: var(--space-md);
  padding-bottom: 0;
  margin-top: var(--space-fill-xl);
}

.sponsors-container {
  width: 100%;
  max-width: 100%;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
}

.sponsor-logo-wrapper {
  flex: 0 0 auto;
}

.sponsor-logo-box {
  background-color: var(--color-neutral);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  width: 280px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sponsor-logo-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sponsor-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .sponsor-logo-box {
    width: 200px;
    height: 120px;
  }
  
  .c-hero__content{
    background: rgba(154, 184, 172, 0.8);
}
  
  .sponsors-grid {
    gap: var(--space-md);
  }
  .news-container-img{
  height: 22.5rem;}
}

.c-card__news__img{
width:100%;
}

.minor-review-banner{

    background-color: rgba(154, 184, 172, 0.5);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    margin-top: var(--space-fill-xl);
    margin-bottom: var(--space-xl);
    align-items: center;
  max-width: 800px;
        margin-left: auto;
        margin-right: auto;
}

.minor-review-banner p{
	color:var(--color-white);
}

.minor-review-banner a{
color: var(--color-primary);
font-size: 1.5rem;
font-weight: 600;
text-decoration: none;
  
}

.minor-review-banner a:hover{
text-decoration: underline;
}

@media (max-width: 768px) {
  
  .carousel::scroll-button(right), .carousel::scroll-button(left){
display:flex;
}

.minor-review-banner a{
text-decoration: underline;
}
  
  .minor-review-box{
  padding: 0 var(--space-md)
  }
  
  .plans-section {
  margin-top: var(--space-xl);
}

.plans-container {
  width: 100%;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-fill);
}

.plan-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  min-height: 100%;
}

.plan-card--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.plan-card--primary .plan-card__price,
.plan-card--primary .plan-card__badge,
.plan-card--primary .plan-card__description,
.plan-card--primary .plan-card__points li span:last-child {
  color: var(--color-white);
}

.plan-card__top {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.plan-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-card__badge {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.plan-card__price {
  font-size: 2rem;
  font-weight: 700;
}

.plan-card__description {
  color: rgba(0, 0, 0, 0.7);
}

.plan-card__divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: var(--space-sm) 0;
}
 
.plan-card__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.plan-card__points li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.plan-card__check-icon {
  flex-shrink: 0;
  color: var(--color-primary);
  display: inline-flex;
}

.plan-card__cta {
  margin-top: auto;
}

.plan-card__button {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .plans-grid {
    gap: var(--space-md);
  }
}
}

.c-card-plan{
    border-radius: var(--radius-xl);
    padding: var(--space-md);
      
    background-color: var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

;
}

.c-card-plan .c-card-content {
    margin-bottom: var(--space-xl);
}

.c-card-plan__info, .c-card-plan__info{
color: var(--color-black);

}

.c-card-plan__title{
color: var(--color-primary);

}

.c-card-plan__subtitle{
color: var(--color-primary);

}

.c-card-plan:nth-of-type(2) {
    background: var(--color-primary);
}

.c-card-plan:nth-of-type(2) p,
.c-card-plan:nth-of-type(2) h4,
.c-card-plan:nth-of-type(2) .c-card-plan__info {
    color: var(--color-white); /* oppure var(--color-primary-contrast) */
}

.button-plan{
margin-top:var(--space-xl);
  text-align:center
}

.my-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
}

.my-video iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
}
