body, html{
  background: rgb(255, 255, 255);
  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: 4rem;} 
h2{font-size: 3rem;} 
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;}
  .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);}
  
  .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;}
}

/* ! Mappa del sito */
.title {
    margin: 0 auto;margin-top: 130px;margin-bottom: 25px;
    max-width: 900px;
    color: #000000;
    text-align: center;
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.452);
}

.title h1 {
    margin: 0;padding: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
}

main {
  min-height: 80vh;
  max-width: 900px;
  margin: 0 auto;margin-bottom: 50px;
  padding: 5px 0;
}

.sitemap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
}

.sitemap-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.sitemap-column h2 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.sitemap-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-column ul li {
  margin-bottom: 8px;
}

.sitemap-column ul li a {
  text-decoration: none;
  color: #181818;
  font-size: 14px;
  line-height: 1.5;
}

.sitemap-column ul li a:hover {
  text-decoration: underline;
  color:#FF8C00;
}

/* Responsive */
@media (max-width: 768px) {
  .title{padding-left: 10px;}  

  .sitemap {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
  }
  
  .sitemap-column {
    flex: 1 1 100%;
  }
}

/* ! 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:#FF8C00;
  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;}

/* ! 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 */
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}