.section{height:auto !important}

.kit-row-bg {
  background: linear-gradient(90deg, #232323 0%, #181818 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.kit-main-title {
  color: #FFD600;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.kit-main-desc {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.kit-box {
  background: rgba(30,30,30,0.98);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  border: 2.5px solid #FFD600;
  min-width: 80%;
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kit-title {
  color: #FFD600;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.kit-imgs img {
  border-radius: 12px;
  /* background: #222; */
  padding: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.fz-button.white {
  margin-top: 1.5rem;
}


/* Sfondo personalizzato */
.kit-section-bg {
  background: linear-gradient(135deg, #1a1a1a 60%, #222d3a 100%);
  /* oppure usa un'immagine: background: url('/assets/img/kit-bg.jpg') center/cover no-repeat; */
}

/* Animazione box kit */
.kit-hover {
  transition: transform 0.3s, box-shadow 0.3s;
}
.kit-hover:hover {
  transform: translateY(-10px) scale(1.03);
  /* box-shadow: 0 8px 32px rgba(255, 215, 0, 0.15); */
}

/* Animazione immagini kit */
.kit-img {
  transition: transform 0.3s;
}
.kit-hover:hover .kit-img {
  transform: scale(1.08);
}

/* Bottone animato */
.kit-btn {
  padding:3px 5px;
  transition: color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.kit-btn:hover {
  color: #ffd700 !important;
  box-shadow: 0 12px 24px -8px rgba(255,215,0,0.25); /* ombra solo sotto */
  transform: scale(1.07);
}






.sessioni-bg {
  background: linear-gradient(135deg, #181818 60%, #232323 100%);
  padding: 5rem 0 5rem 0;
  margin: 5rem 0 5rem 0;
}

.sessioni-title {
  font-size:5rem;font-weight:900;letter-spacing:0px;
  color: #FFD600;
  margin-bottom: 0.5rem;
  text-align: left;
}

.sessioni-desc {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 0.5rem;
}

.session-box {
  background: rgba(30,30,30,0.98);
  border-radius: 18px;
  box-shadow: 0 16px 32px -12px rgba(0,0,0,0.18);
  border: 4px solid #FFD600;
  padding: 32px 22px 24px 22px;
  min-height: 420px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  position: relative;
  overflow: hidden;
}

.session-box:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 24px 48px -12px rgba(255,215,0,0.18);
  border-color: #fff700;
}

.session-img-wrap {
  width: 100%;
  height: 240px; /* altezza fissa per tutte le immagini */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.session-img {
  max-height: 250px; /* altezza massima per tutte le immagini */
  width: auto;
  object-fit: contain;
  transition: transform 0.28s;
}

.session-box:hover .session-img {
  transform: scale(1.12) rotate(-2deg);
}

.session-box-title {
  color: #FFD600;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.28s;
}

.session-box:hover .session-box-title {
  color: #fff700;
}

.session-box-text {
  color: #fff;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: auto;
  transition: color 0.28s;
}

.session-box:hover .session-box-text {
  color: #FFD600;
}

@media (max-width: 991px) {
  .session-box {
    min-height: 380px;
    padding: 24px 12px 18px 12px;
  }
  .session-img {
    width: 80%;
  }
  .sessioni-title,
  .sessioni-desc {
    text-align: center !important;
  }

  .sessioni-title{font-size:3rem}
}





.coach-box {
  background: linear-gradient(135deg, #181818 60%, #FFD600 100%);
  border-radius: 24px;
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s all linear;
  min-height: 480px;
  height: 100%;
  position: relative;
}

.coach-box:hover {
  background: linear-gradient(135deg, #181818 40%, #FFD600 100%);
  box-shadow: 0 12px 32px -8px rgba(255,215,0,0.10);
}

.coach-name {
  color: #FFD600;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: 1px;
  text-align: center;
}

.coach-img {
  max-height: 320px;
  width: auto;
  margin-bottom: 18px;
  transition: 0.28s all linear;
}

.coach-box:hover .coach-img {
  transform: scale(1.09);
}

.coach-desc {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.4;
  text-align: center;
  margin-top:25px;
  min-height: 80px;
}

@media (max-width: 991px) {
  .coach-box {
    min-height: 340px;
    padding: 18px 8px 18px 8px;
  }
  .coach-img {
    max-height: 180px;
  }
  .coach-name {
    font-size: 1.3rem;
  }
  .coach-desc {
    font-size: 1rem;
  }
}


.carosello-team .slick-slide {
  margin: 0 18px;
}
.carosello-team {
  /* Per evitare overflow laterale */
  padding: 0 18px;
}



#gallery{z-index:9;}
.container-video{position: relative;top:unset;left:unset;}
#gallery #video-gallery{opacity: 1;}

#fixed-corsi, #partner-row, #row-kit {
    position: relative;
    left: unset;
    transition: all 0.5s;
}
.py-5rem{
  padding-top:5rem;
  padding-bottom:5rem;
}

.partner-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.main-sponsor-title,
.silver-sponsor-title,
.other-sponsor-title {
  color: #FFD600;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.partner-main {
  margin-bottom: 32px;
}

.partner-silver {
  margin-bottom: 32px;
}

.partner-other {
  margin-top: 32px;
}

.partner-img-main {
  max-width: 320px;
  width: 100%;
  margin-bottom: 24px;
}

.partner-img-silver {
  max-width: 160px;
  width: 100%;
  margin: 0 24px;
}

.partner-img-other {
  max-width: 590px;
  width: 100%;
  margin-top: 24px;
}

.d-flex.gap-4 {
  gap: 48px !important;
}

@media (max-width: 991px) {
  .main-sponsor-title,
  .silver-sponsor-title,
  .other-sponsor-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  .partner-grid {
    gap: 24px;
    margin-top: 18px;
    margin-bottom: 18px;
  }
  .partner-img-main,
  .partner-img-silver,
  .partner-img-other {
    max-width: 100%;
    margin-bottom: 16px;
  }
  .d-flex.gap-4 {
    gap: 18px !important;
  }
}


.fz-button-outline {
  background: transparent;
  color: #FFD600;
  border: 2px solid #FFD600;
  transition: 0.2s all linear;
}
.fz-button-outline:hover {
  background: #FFD600;
  color: #111;
}

.sticky-img {

  align-self: flex-start;
  height: fit-content;
  z-index: 2;
}

.sticky-img img {
  width: 100%;
  height: auto;
  display: block;
}






.fz11-app-fixed {
  position: fixed;
  bottom: 15%;
  right: 0;
  transform: translateY(-50%);
  background: #FFD600;
  color: #111;
  border-radius: 32px 0 0 32px;
  box-shadow: 0 0 0 0 #FFD60088, 0 4px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 18px 18px 14px;
  font-weight: 900;
  font-size: 1.15rem;
  z-index: 9999;
  text-decoration: none;
  /* animation: fz11-pulse 1.2s infinite;
  transition: box-shadow 0.2s, color 0.2s; */
}

.fz11-app-fixed:hover {
  box-shadow: 0 0 0 16px #FFD60044, 0 8px 32px rgba(255,214,0,0.25);
  background: #ffe44d;
  color: #111;
}

.fz11-app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.fz11-app-text {
  font-family: 'Montserrat', 'Arial', sans-serif;
  letter-spacing: 1px;
  text-align: center;
  color: #111;
}

@keyframes fz11-pulse {
  0% { box-shadow: 0 0 0 0 #FFD60060, 0 4px 24px rgba(0,0,0,0.18);}
  50% { box-shadow: 0 0 0 10px #FFD60044, 0 4px 24px rgba(0,0,0,0.18);}
  100% { box-shadow: 0 0 0 0 #FFD60060, 0 4px 24px rgba(0,0,0,0.18);}
}

@media (max-width: 991px) {
  .fz11-app-fixed {
        top: auto;
        bottom: 24px;
        right: 12px;
        transform: none;
        padding: 7px;
        font-size: 1rem;
        border-radius: 30%;
        gap: 0px;
    }

    .fz11-app-text {font-size:12px}

    .slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    padding: 0;
    cursor: pointer;
}
}

@media (max-width:767px){
  .carosello-team .slick-slide{margin:0;}
  .coach-desc{min-height:90px;}
  .slick-dots {
    width: auto;
    left: 0;
    right: 0;
}
}