body, html{
  background:#f9f9f9;
  font-family: "Montserrat", sans-serif;
  line-height: 1; 
  font-size: 16px; 
  box-sizing: border-box;
  padding: 0;margin: 0;
  scroll-behavior: smooth;
}
  
h1,h2,h3,h4,h5,h6, p, ol, ul{
  margin: 0 0 1rem 0;
  padding: 0;
}
  
.bold {
  font-weight: bold;
}
    
ol,ul{
  padding-left: 20px;
  line-height: 1.5;
}
    
h1{font-size: 2.7rem;} 
h2{font-size: 2.3rem;width: 100%;display: flex;justify-content: center;} 
h3{font-size: 2rem;} 
h4{font-size: 1rem;} 
h5{font-size: 0.8rem;} 
h6{font-size: 0.6rem;}
a{text-decoration:none; font: inherit;cursor: pointer;}
  
/* ! Colore principale: #e17400 */
/* ! Selection/Scrollbar */
::selection {
    background: #f93b3b96; /* Codice colore per il giallo oro */
    color: rgb(255, 255, 255); /* Colore del testo quando selezionato */
}
  
  
/* Per WebKit (Chrome, Safari) */
::-webkit-scrollbar {
    width: 8px; /* Larghezza della barra verticale */
    height: 8px; /* Altezza della barra orizzontale */
}
  
/* Per WebKit - thumb (parte mobile della barra) */
::-webkit-scrollbar-thumb {
    background: #888888; /* Colore del thumb */
    border-radius: 0px; /* Angoli arrotondati */
}
  
/* Per WebKit - thumb:hover (thumb al passaggio del mouse) */
::-webkit-scrollbar-thumb:hover {
    background: #555; /* Colore del thumb al passaggio del mouse */
}
  
/* Per WebKit - track (traccia della scrollbar) */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Colore del background della traccia */
    border-radius: 10px; /* Angoli arrotondati della traccia */
}
  
.hideforPC{display: none;}
@media (max-width: 768px) {.hideforPC{display: inline;}}

/* ! CallToAction */
.callToAction_Btn{
    border-radius: 30px;
    font-weight: 300;
    padding: 10px 20px;
    background-color: #ff3f3f;
    color:#ffffff;
    cursor: pointer;
    border: 1px solid  #ff3f3f;
    user-select: none;
}
  
.callToAction_Btn:hover{
    background-color:#f03434;
}
  
  /* ! CallToAction */
.callToAction_ScndBtn{
  margin-left: 10px;
  border-radius: 30px;
  font-weight: 300;
  padding: 10px 20px;
  color: #ff3f3f;
  cursor: pointer;
  border: 1px solid  #ff3f3f;
  user-select: none;
}
  
.callToAction_ScndBtn:hover{
  color: #fff;
  background-color: #ff3f3f;
}

/* ! Social */
.card {
  margin: 0 auto;
  width: fit-content;
  height: fit-content;
  background-color: rgba(77, 77, 77, 0);
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 3px 5px 3px 5px;
  gap: 10px;
  border-radius: 5px;
}

/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
}

/* instagram*/
.containerOne:hover {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  transition-duration: 0.3s;
}
/* Tiktok*/
.containerTwo:hover {
  background: linear-gradient(135deg, #ee1d52, #9b51e0, #69c9d0);
  transition-duration: 0.3s;
}
/* Facebook*/
.containerThree:hover {
  background-color: #1877f2;
  transition-duration: 0.3s;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: green;
  transition-duration: 0.3s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 19px;
}
.largeIcon {
  width: 27px; /* Ancho específico solo para el icono de TikTok */
}
.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {.socialMobile{display: block;margin-bottom: 20px;}}
  
/* ! Colors */
.tw{color: #ffffff;} 
.tg{color: gray;}
.tgs{color: #121212;}
.tlg{color: rgb(197, 197, 197);}
.tb{color: #000;} 
.tr{color: red;} 
.to{color: rgb(247, 108, 16);}
.ty{color: rgb(255, 187, 0);}
.tlb{color: #2c78d4;}
.tgr{color: #15be18;}
  
.fw100{font-weight: 100;}
.fw200{font-weight: 200;}
.fw300{font-weight: 300;}
.fw400{font-weight: 400;}
.fw500{font-weight: 500;}
.fw600{font-weight: 600;}
.fw700{font-weight: 700;}
.fw800{font-weight: 800;}
.fw900{font-weight: 900;}
  
.FuturaFont{font-family: Futura, "Trebuchet MS", Arial, sans-serif;}
.EmbedCode{font-family: "Pacifico", cursive;}
.Helvetica{font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;}
.carattere-regular{font-family: "Carattere", cursive;}
.Poppins{font-family: "Poppins", sans-serif}
.Roboto{font-family: "Roboto", sans-serif;}
.libre-franklin{font-family: "Libre Franklin", sans-serif;}
  
/* ! Css Personalizzato */
/* Menu */
:root { --menu-bg: #ffffff; --menu-color: #101010; }

.header{transition: background-color 0.5s ease;background-color: #e6e6e6e3;backdrop-filter: blur(7px);-webkit-backdrop-filter: blur(7px); position: fixed; top:0;  left:0;height: 70px; z-index: 900;right: 0; padding: 0px 25px 0px 25px;}
.header:hover{background-color:  #e6e6e6;}
.header__content{max-width: 1900px;width: 100%;margin: 0 auto; display: flex;justify-content: space-between;}

.nome_Header{color: rgb(0, 0, 0);font-size: 30px;}

.header__logo{width: 25%;}
.header__logo,
.header__quick{display: flex; align-items: center;justify-content: right; height: 70px;width: 25%;}
.header__logo a{width: fit-content;height: fit-content;}

.header__menu{padding: 0;margin: 0;display: flex;align-items: center;justify-content: left;min-height: 55px;width: 50%;padding-left: 20px;}
.header__menu li{display: inline-block;}
.header__menu li a{opacity: 0.8;display: block;padding: 16px;}

.a_header{color: rgb(0, 0, 0);font-size: 20px;font-weight: 600;}
.li-header{padding: 0;opacity: 1;padding: 0px;}
.header__menu li a{opacity: 0.8;padding: 0px;}

.supportBtn{width: 100px;height: 30px;padding: 10px;border-radius: 14px;}
@media (max-width: 1005px) {.social{display: none;}}

@media (max-width: 768px) {
  .header{padding: 5px;z-index: 999;}
  .header__quick{display: block;position: relative;z-index: 2;}
  .header__menu{display: block; opacity: 0;background-color:  #e6e6e6;
    position: absolute; top:0px; left:0;right: 0;height: 100vh;width: 100%;
    height: 0vh; overflow: hidden;transition: all 1s cubic-bezier(.215, .61, .355, 1);
  }

  .mobilespacer{width: 50%;height: 5vh;}
  .header__menu li{padding: 10px;width: 100%;left: 0;right: 0;display: flex;justify-content: left;}
  .menu-open .header__menu{height: 130vh;padding: 3%;opacity: 1;transition: all 1s cubic-bezier(.215, .61, .355, 1);}
  .menu-open .header{z-index: 9999;}

  .a_header{font-weight: 800;color: #000000;}

  .icon-hamburger{height: 50px;width: 30px;margin-left: 20px;padding-top: 5px;}
  .icon-hamburger span{height: 2px; width: 22.5px;background-color: #000000;position: relative;display: block;margin-top: 11px;transition: all 0.2s cubic-bezier(.215, .61, .355, 1);}

  .menu-open .icon-hamburger span:nth-child(1){transform: rotate(45deg) translateY(9px);}
  .menu-open .icon-hamburger span:nth-child(2){transform: rotate(-45deg) translateY(-9px);}

  .header__quick{display: flex; justify-content: flex-end; width: 50%;}

}

@media (min-width: 768px) {
  .header__menu li {
    width: fit-content;
    padding: 0px;
    margin-right: 40px;
    position: relative;
    display: inline-block;
    align-items: center;
  }
  
  .header__menu a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 105%; /* Spessore della linea */
    background-color: #7c7c7c50;
    opacity: 0; /* Opacità iniziale bassa */
    transition: opacity 0.1s ease ; /* Transizione dell'opacità con cubic-bezier */
    border-radius: 10px;
  }
  
  .header__menu a:hover::after {
    border-radius: 30px;
    transform: translateX(-12.5%);
    width: 135%; /* Lunghezza massima della linea */
    opacity: 1; /* Opacità completa alla fine */
  }
  
}

@media (max-width: 768px) {
  .header{background-color:  #e6e6e6;height: 50px;padding-top: 10px;}
  .nome_Header{color: rgb(0, 0, 0);margin-left: 0px;font-size: 24px;margin-bottom: 0px;}
  .header__logo{width: 25%;}
  .header__logo,
  .header__quick{display: flex; align-items: center;height: 30px;width: fit-content;}
}

@media (max-width: 768px) {
main h1{
  font-size: 2rem;
  margin-bottom: 10px;
}
}
@media (max-width: 400px) {
main h1{
  font-size: 1.6rem;
  margin-bottom: 10px;
}
}

main {
  margin: 100px 0;
  width: 100%;
}

main img{
  height: 190px;
  width: 190px;
  margin-bottom: 20px;
}

main h2{
  padding: 5px 10px;border-radius: 15px 15px 0px 0px;
  max-width: 900px;
  width: 70vw;
  display: flex;align-items: center;gap: 20px;
  margin: 25px 0px 0px 0px;padding: 10px;
  background-color: #000;color: #fff;
  border-bottom: 1px solid #5b5b5b;
  text-align: center;
}
@media (max-width: 900px) {
  main h2{
    width: 90vw;
  }
}

.title{text-align: center;}
.label{
  margin: 30px 0px 10px 0px;
  gap: 10px;
  padding: 0px 10px;
  display: flex;align-items: center;justify-content: center;
}
.spacerLabel{
  width: 10px;min-height: 50px;
}
@media (max-width: 768px) {
  .label{
    margin: 15px auto 10px auto;
    width: 90vw;
  }
}
@media (max-width: 500px) {
  .label{
    text-align: right;
    line-height: 20px;
  }
}

/* ! Apple */
.card-apple{
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
               Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;

}

/* ! Xiaomi */
.card-xiaomi{
  font-family: 'Roboto', 'Noto Sans', 'Helvetica', 'Arial', sans-serif;
}

select{
    width: 180px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 16px;
}

table {
  margin: 0 auto;
  max-width: 900px;
  width: 70vw;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0px 0px 15px 15px;
  overflow: hidden; /* Necessario per arrotondare */
  border: 1px solid #000; /* Bordo visibile */
}

th, td {
  padding: 10px;
  border: 1px solid #000;
}

th:first-child {
  background-color: #000;color: #fff;
  border-top-left-radius: 0px 0px 10px 10px;
}

th:last-child {
  border-top-right-radius: 0px;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

@media (max-width: 900px) {
table{width: 90vw;border-radius: 0px 0px 20px 20px;}
  
th:first-child {
  background-color: #000;color: #fff;
  border-top-left-radius: 0px;
}

th:last-child {
  border-top-right-radius: 0px;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 0px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 0px;
}
}

th, td {
  padding: 10px;
  text-align: left;
}

.lensButton {
  border-radius: 30px;
  font-weight: 300;
  padding: 10px 20px;
  background-color: #ff3f3f;
  color:#ffffff;
  cursor: pointer;
  border: 1px solid  #ff3f3f;
  user-select: none;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
.lensButton:hover {
    background-color:#f03434;
}

@media (max-width: 768px) {
  .lensButton{
    border-radius: 13px;
    width: 90vw;
  }
  .lensButton:hover{
    scale: 1;
  }
}

/* ! ONLY SAMSUNG */
.device-header{
  width: fit-content;margin: 0 auto;
}

/* ! titolo gradient */
.gradient-title {
  background: linear-gradient(90deg, #ff3f3f, #f3be8d); /* Arancione verso bianco */
  background-clip: text;
  color: transparent; /* Rende il testo trasparente per mostrare il gradiente */
  letter-spacing: 1px; /* Un po' di spazio tra le lettere per eleganza */
}

/* ! Cards */
.card-container {
  display: flex;flex-direction: column;
  justify-content: center;align-items: center;
  gap:15px;
  padding: 0 20px;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.cardBrand{
  user-select: none;
  border: 1px solid rgb(43, 43, 43);
  border-radius: 25px;
  padding: 0px;
  font-size: 30px;
  color: #000;
  width: 200px;
  min-width: 250px;
  height: 70px;
  display: flex;justify-content: center;align-items: center;
  transition: all 0.3s ease;
  background-color: #ffff;
}
.card-group{
  display: flex;flex-direction: row;justify-content: center;align-items: center;
  gap: 15px;
  width: 100%;
}
@media (max-width: 768px) {
/* ! Cards */
.card-container {
  display: flex;
  justify-content: center;align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  padding: 0;
  width: 95%;
  max-width: 768px;
  margin: 0 2.5%;
}
.cardBrand{
  border-radius: 25px;
  padding: 0px;
  font-size: 30px;
  color: #000;
  width: 45%;
  min-width: 135px;
  height: 70px;
  display: flex;justify-content: center;align-items: center;
  transition: all 0.3s ease;
}
}

.apple{
  background-color: #ffffff;
}
.apple:hover{
  background-color: #000;
  color: #fff;
  scale: 1.05;
}
.apple:hover img.apple-logo {
  filter: brightness(0) invert(1);
}


.samsung:hover{
  scale: 1.05;
  background-color: #006bea;  
  fill: #fff;
  border: 1px solid #006bea;
}

.huawei:hover{
  background: #ebc4c4;
  border: 1px solid #eab7b7;
  scale: 1.05;
}

.xiaomi:hover{
  background-color: #f7d6b3;  
  scale: 1.05;
  border: 1px solid #f5c795;
}

.oppo:hover{
  background-color: #1EA366;
  scale: 1.05;
  border: 1px solid #1EA366;
}
.honor:hover{
  background-color: #f5f5f5;
  scale: 1.05;
  border: 1px solid #d1d0d0;
}
.google:hover{
  scale: 1.05;
  background-color: #e2f6f8;
  border: 1px solid #d1d0d0;
}
.motorola:hover{
  background-color:  #001428;
  scale: 1.05;
  border: 1px solid #001428;
}
.motorola:hover img.motorola-logo {
  filter: brightness(0) invert(1);
}

.cardBrand .huaweilogo{
  object-fit: contain;
  height: 100%;
  width: 60%;
}
.cardBrand .xiaomi-logo{
  width: 50px;
}
.cardBrand .oppo-logo{
  width: 130px;
}
.cardBrand .google-logo{
  width: 125px;
  transform: translateY(5px);
}
.cardBrand .motorola-logo{
  width: 140px;
  transform: translateY(5px);
}
.cardBrand .apple-logo{
  width: 120px;
  margin-right: 10px;
  filter: invert(0.1);
}
@media (max-width: 768px) {
.cardBrand .apple-logo{
  width: 90px;
  margin-right: 0px;
  filter: invert(0.1);
}
.cardBrand .huaweilogo{
  width: 120px;
}
.cardBrand .xiaomi-logo{
  width: 40px;
}
.cardBrand .oppo-logo{
  width: 130px;
}
.cardBrand .honor-logo{
  width: 80px;
}
.cardBrand .google-logo{
  width: 95px;
  transform: translateY(5px);
}
.cardBrand .motorola-logo{
  width: 130px;
  transform: translateY(5px);
}
}

/* ---------------- Dynamic Island ---------------- */
.dynamic-island {
  user-select: none;
  position: fixed;
  bottom: 2.5%;
  left: 50%;
  transform: translate(-50%, 5px);
  background-color: #100e09; /* colore semi-trasparente */
  backdrop-filter: blur(20px); /* sfocatura dello sfondo */
  -webkit-backdrop-filter: blur(20px); /* supporto per Safari */
  width: fit-content;
  height: 55px;width: 55px;          /* altezza chiusa fissa */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  z-index: 1000;
  overflow: hidden;      /* taglia solo il contenuto extra */
  color: #fff;
  box-sizing: border-box;
  transition: all 0.9s ease;
}
/* Stato espanso */
.dynamic-island.is-expanded {
  transform: translate(-50%, -5px);
  background-color: #100e09e6;
  height: 95%;width: 700px;  /* altezza espansa */
  border-radius: 40px;
}
body.no-scroll {
  overflow: hidden;
  touch-action: none; /* blocca swipe su mobile */
}
/* Stato nascosto quando tocca il footer */
.dynamic-island.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 40px);
}

/* ! Open/Close Btn */
.dynamic-island.is-expanded svg {
  transform: rotate(180deg);
}
.dynamic-island svg {
  height: 70%;width: 70%;
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.4s ease;
}
/* wrapper centrato */
.svg-toggleBtn {
  cursor: pointer;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%); /* centratura */
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

/* Header scrollabile */
.dynamic-island-header {
  opacity: 0;
  pointer-events: none;
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin-bottom: 10px;
  padding: 15px;
  scroll-behavior: smooth;
  border-radius: 20px;
  background-color:  #fcfcfc;backdrop-filter: blur(7px);-webkit-backdrop-filter: blur(7px);
  transition: all 0.4s ease;
}
/* Quando il container ha la classe .is-expanded */
.dynamic-island.is-expanded .dynamic-island-header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dynamic-island-header h3 {
  font-size: 2.5rem;
  color: #1d1d1d;
  font-weight: 600;
  margin: 0;
}

/* Contenuto extra */
.dynamic-island-content {
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 100%;height: 100%;
  display: flex;align-items: center;justify-content: start;
  flex-direction: column;
  border-radius: 0px 0px 18px 18px;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-height: 780px) {
  .dynamic-island-content{
      min-height: 660px;
  }
}
.dynamic-island.is-expanded .dynamic-island-content {
  opacity: 1;
}

.dynamic-island-content .card-container{
  height: fit-content;margin-bottom: 0%;
  width: 100%;max-width: 100%;
  padding: 20px 0px;
  display: flex;flex-direction: column;justify-content: start;align-items: center;
}
.dynamic-island-content .cardBrand{
  width: 100%;
  border-radius: 20px;
  height: 56px;
}


.carousel {
  position: relative;
  width: 100%;
  height: 40%;
  overflow: hidden;
  display: flex;justify-content: center;align-items: center;flex-direction: column;
}

.carousel-track {
  width: 100%;height: 90%;
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-cell {
  min-width: 100%;     /* occupa tutta la larghezza della carousel */
  margin: 0 10px;       /* piccolo spazio tra le celle */
  height: 100%;
  background: linear-gradient(135deg,#6e8efb,#a777e3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  user-select: none;
}
.carousel-cell img{
  height: 80%;
  border-radius: 20px;
  object-fit: contain;
  position: absolute;z-index: 1;
}
.carousel-cell a{
  position: absolute;z-index: 2;
  width: 100%;height: 100%;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  position: relative;
  z-index: 10; /* assicura che siano sopra il track */
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 4px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.dot.active {
  width: 40px;
  background: #ffffff;
}

@media (max-width: 375px) {
  .dynamic-island.is-expanded {
    width: 100%; /* Larghezza ridotta per schermi piccoli */
    height: 100%; /* Altezza ridotta per schermi piccoli */
    bottom: 0px;margin-bottom: 0;
    transform: translate(-50%, 0px);
    border-radius: 0px;
  }
  .dynamic-island.dynamic-island.is-expanded body{
    overflow: hidden !important;
  }
  
  .dynamic-island-content .card-container{
    display: flex;flex-direction: column;justify-content: center;align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 0%;
    width: 100%;max-width: 100%;
    padding: 0px;
  }
  .dynamic-island-content .card-group{
    flex-wrap: nowrap;
    gap: 10px;
  }
  .dynamic-island-content .cardBrand{
    height: 56px;
  }

  .carousel{
    position: relative;
    width: 100%;
    margin-top: 10px;
    height: 40%;
    overflow: hidden;
    display: flex;justify-content: center;align-items: center;flex-direction: column;
  }

  .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
  position: relative;
  z-index: 10; /* assicura che siano sopra il track */
  }
}
@media (max-width: 769px) {
  .dynamic-island.is-expanded {
    width: 100%; /* Larghezza ridotta per schermi piccoli */
    height: 100%; /* Altezza ridotta per schermi piccoli */
    bottom: 0px;margin-bottom: 0;
    transform: translate(-50%, 0px);
    border-radius: 0px;
  }
  
  .dynamic-island-content .card-container{
    display: flex;flex-direction: column;justify-content: center;align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 0%;
    width: 100%;max-width: 100%;
    padding: 0px;
    height: fit-content;margin-top: 10px;
  }
  .dynamic-island-content .card-group{
    flex-wrap: nowrap;
    gap: 10px;
  }
  .dynamic-island-content .cardBrand{
    min-height: 56px;
  }

  .carousel{
    position: relative;
    width: 100%;
    margin-top: 10px;
    height: 40%;
    overflow: hidden;
    display: flex;justify-content: center;align-items: center;flex-direction: column;
  }

  .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
  position: relative;
  z-index: 10; /* assicura che siano sopra il track */
  }
}

/* ! Footer */
footer {
  display: flex;justify-content: center;align-items: center;flex-direction: column;
  position: relative;
  z-index: 2;
  background-color: #1d1d1f;
  color: #ffffffd0;
  padding: 20px ;
}

.footer-container {
  display: flex;justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 5px;
  border-bottom: 1px solid #d2d2d7;
}

.footer-section {
  padding: 20px;
  display: flex;flex-direction: column;justify-content: center;align-items: center;
  flex: 1;
  min-width: 250px;
  margin: 0 20px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-section ul {
  display: flex;flex-direction: column;text-align: center;
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-section a {
  color: #ffffffb2;
}

.footer-section a:hover {
  color: #ff3f3f;
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #f3f3f3;
}

@media (max-width: 981px) {
  .footer-container{flex-wrap: wrap;}
}

.developerMiniBanner{
  background-color: #0f0f0f;
  height: fit-content;width: 100%;
  padding: 10px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.developerMiniBanner p{margin: 0;font-size: 16px;}

.developerMiniBanner{
  background-color: #0f0f0f;
  height: fit-content;width: 100%;
  padding: 10px;
  text-align: center;
}
.developerMiniBanner p{margin: 0;font-size: 16px;}

/* ! Gradient Title */
.gradient-title {
  background: linear-gradient(90deg, #ff3f3f, #f3be8d); /* Arancione verso bianco */
  background-clip: text;
  color: transparent; /* Rende il testo trasparente per mostrare il gradiente */
  letter-spacing: 1px; /* Un po' di spazio tra le lettere per eleganza */
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}