.elementor-1986 .elementor-element.elementor-element-81d7a37{--display:flex;--margin-top:90px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1986 .elementor-element.elementor-element-4f7a95d > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-1986 .elementor-element.elementor-element-b54fd8a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:-40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1986 .elementor-element.elementor-element-efa4672{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1986 .elementor-element.elementor-element-761a8dc > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-1986 .elementor-element.elementor-element-de554ae > .elementor-widget-container{margin:0px 0px 0px 0px;}/* Start custom CSS *//* Hero Container e Background */
.tholus-hero-container {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(170deg, #ffffff 0%, #f5f7ff 50%, #eef1ff 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tholus-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(93,59,232,0.1)" /></svg>');
  background-size: 80px 80px;
  background-repeat: repeat;
  opacity: 0.5;
}

/* Contenuto principale */
.tholus-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px;
  max-width: 1200px;
}

.tholus-badge {
      display: inline-block;
      background-color: #5d3be8;
      color: white;
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 30px;
      transform: rotate(-2deg);
      box-shadow: 0 4px 15px rgba(93,59,232,0.3);
    }

.tholus-badge span {
  font-size: 14px;
  color: white;
}

.tholus-hero-title {
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7); /* Aggiungi un'ombra scura intorno al testo */
}

.tholus-hero-title span {
  color: #8a64ff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8); /* Ombra più pronunciata */
  font-weight: 700;
}

.tholus-hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: white;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6); /* Aggiungi un'ombra */
  background-color: rgba(0, 0, 0, 0.4); /* Aggiunge un leggero sfondo scuro semi-trasparente */
  padding: 10px; /* Aggiunge spazio intorno al testo */
  border-radius: 8px; /* Arrotonda gli angoli */
  backdrop-filter: blur(3px); /* Effetto di sfocatura sotto il testo (funziona sui browser moderni) */
}

/* Menu Mobile Fullscreen */
.tholus-mobile-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 2000;
}

.tholus-mobile-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #5d3be8;
  border-radius: 3px;
  opacity: 1;
  transition: transform 0.3s ease, top 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
}

.tholus-mobile-toggle span:nth-child(1) {
  top: 5px;
}

.tholus-mobile-toggle span:nth-child(2) {
  top: 13px;
}

.tholus-mobile-toggle span:nth-child(3) {
  top: 21px;
}

.tholus-mobile-toggle.active span {
  transition: transform 0.3s ease 0.3s, top 0.3s ease, opacity 0.3s ease;
}

.tholus-mobile-toggle.active span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.tholus-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.tholus-mobile-toggle.active span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

/* Mobile Overlay */
.tholus-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0f1b;
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.tholus-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.tholus-mobile-overlay-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(93, 59, 232, 0.2) 0%, rgba(59, 189, 158, 0.2) 100%);
  z-index: 1;
}

.overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="5" cy="5" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 40px 40px;
  opacity: 0.6;
  z-index: 2;
}

.tholus-mobile-overlay-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  min-height: 100%;
}

.tholus-mobile-overlay-header {
  padding: 20px 10px 40px;
  text-align: center;
}

.mobile-overlay-logo {
  height: 40px;
  width: auto;
}

/* Pulsante di chiusura esplicito */
.tholus-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: all 0.3s ease;
}

.tholus-mobile-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.close-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.close-icon:before,
.close-icon:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  top: 50%;
  left: 0;
}

.close-icon:before {
  transform: rotate(45deg);
}

.close-icon:after {
  transform: rotate(-45deg);
}

/* Animazione di entrata per il pulsante di chiusura */
.tholus-mobile-overlay.active .tholus-mobile-close {
  animation: fadeRotateIn 0.5s ease forwards;
}

@keyframes fadeRotateIn {
  from {
    opacity: 0;
    transform: rotate(-90deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

/* Adatta la posizione sui dispositivi più piccoli */
@media (max-width: 480px) {
  .tholus-mobile-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
}

/* Mobile Navigation */
.tholus-mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mobile-nav-primary {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(93, 59, 232, 0.3);
}

.mobile-nav-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(93, 59, 232, 0.2) 0%, rgba(59, 189, 158, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 22px;
  color: #5d3be8;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mobile-nav-item:hover .mobile-nav-icon {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  transform: scale(1.1);
}

.mobile-nav-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-nav-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.mobile-nav-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.mobile-nav-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-nav-item:hover .mobile-nav-arrow {
  color: white;
  transform: translateX(5px);
}

/* Secondary Navigation */
.mobile-nav-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #5d3be8, #3bbd9e);
  transition: width 0.3s ease;
}

.mobile-nav-link:hover {
  color: white;
}

.mobile-nav-link:hover:before {
  width: 100%;
}

/* CTA */
.mobile-nav-cta-wrapper {
  text-align: center;
  margin-top: auto;
  padding: 20px 0 30px;
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  padding: 16px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(93, 59, 232, 0.3);
}

.mobile-nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(93, 59, 232, 0.4);
}

.mobile-nav-cta i {
  transition: transform 0.3s ease;
}

.mobile-nav-cta:hover i {
  transform: translateX(5px);
}

/* Footer */
.tholus-mobile-overlay-footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-overlay-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.mobile-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.mobile-social-icon:hover {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  transform: translateY(-3px);
}

.mobile-overlay-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mobile-overlay-info a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.mobile-overlay-info a:hover {
  color: white;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .tholus-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tholus-main-menu {
    display: none;
  }
  
  .mobile-nav-item {
    padding: 15px;
  }
  
  .mobile-nav-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 15px;
  }
  
  .mobile-nav-title {
    font-size: 16px;
  }
  
  .mobile-nav-desc {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .mobile-nav-item {
    padding: 12px;
  }
  
  .mobile-nav-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-right: 12px;
  }
  
  .mobile-nav-title {
    font-size: 15px;
  }
  
  .mobile-nav-secondary {
    gap: 20px;
  }
  
  .mobile-nav-link {
    font-size: 14px;
  }
  
  .mobile-nav-cta {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
  }
}

/* CTA */
.tholus-hero-cta-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tholus-hero-cta {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tholus-hero-cta.primary {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  padding-right: 34px;
}

.tholus-hero-cta.secondary {
  background-color: white;
  color: #5d3be8;
  border: 2px solid rgba(93,59,232,0.2);
}

.tholus-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-headline {
  font-weight: 700;
  font-size: 16px;
}

.cta-subline {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 400;
}

/* Luna Message */
.tholus-luna-message {
  display: flex;
  align-items: center;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 15px 25px;
  background: rgba(93, 59, 232, 0.15);
  border-radius: 12px;
  border-left: 3px solid #5d3be8;
}

.luna-avatar {
  flex: 0 0 50px;
  margin-right: 15px;
}

.luna-image {
  border-radius: 50%;
  border: 2px solid #5d3be8;
  width: 100%;
  height: auto;
}

.luna-text {
  flex: 1;
}

.luna-text p {
  margin: 0 0 5px;
  font-style: italic;
  color: white;
  font-size: 16px;
}

.luna-signature {
  color: #121212;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.luna-text-mobile p {
  margin: 0 0 5px;
  font-style: italic;
  color: #121212;
  font-size: 16px;
}

.luna-signature-mobile {
  color: #5d3be8;
  font-size: 14px;
}


.pulse-glow {
  animation: pulse-glow 2s infinite alternate;
  box-shadow: 0 0 8px rgba(93,59,232,0.4);
}

@keyframes pulse-glow {
  from {
    box-shadow: 0 0 8px rgba(93,59,232,0.4);
  }
  to {
    box-shadow: 0 0 15px rgba(93,59,232,0.7);
  }
}

/* Feature Cards */
.tholus-hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  position: relative; /* RIGA NUOVA */
  z-index: 11; /* RIGA NUOVA */
  background-color: white; /* RIGA NUOVA */
  border-radius: 12px; /* RIGA NUOVA */
  padding: 10px; /* RIGA NUOVA */
  width: 100%; /* RIGA NUOVA */
  margin-top: 20px; /* RIGA NUOVA */
}

.tholus-hero-feature {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 200px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(93,59,232,0.08);
}

.tholus-hero-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(93,59,232,0.1);
  border-color: rgba(93,59,232,0.2);
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 15px;
  color: #5d3be8;
  background: rgba(93,59,232,0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.tholus-hero-feature h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.tholus-hero-feature p {
  font-size: 14px;
  color: #666;
}

/* Client Logos */
.tholus-client-logos {
  margin-top: 30px;
}

.tholus-client-logos p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.client-logo {
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

/* Scroll Indicator */
.tholus-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #5d3be8;
  font-size: 14px;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tholus-scroll-indicator:hover {
  opacity: 1;
  transform: translate(-50%, -5px);
}

.scroll-arrow {
  margin-top: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 992px) {
  .tholus-hero-title {
    font-size: 40px;
  }
  
  .tholus-hero-subtitle {
    font-size: 16px;
  }
  
  .tholus-hero-feature {
    width: 170px;
  }
}

@media (max-width: 768px) {
  .tholus-hero-container {
    min-height: auto;
    padding: 80px 0 100px;
  }
  
  .tholus-hero-content {
    padding: 20px;
  }
  
  .tholus-hero-title {
    font-size: 32px;
  }
  
  .tholus-hero-subtitle {
    font-size: 15px;
    br {
      display: none;
    }
  }
  
  .tholus-hero-cta-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .tholus-hero-cta {
    width: 100%;
    justify-content: center;
  }
  
  .tholus-hero-feature {
    width: calc(50% - 20px);
  }
  
  .tholus-luna-message {
    flex-direction: column;
    text-align: center;
  }
  
  .luna-avatar {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .client-logo {
    height: 25px;
  }
}

@media (max-width: 480px) {
  .tholus-hero-title {
    font-size: 28px;
  }
  
  .tholus-hero-subtitle {
    font-size: 14px;
  }
  
  .tholus-hero-feature {
    width: 100%;
  }
}

/* ===== BARRA DI NAVIGAZIONE ===== */
.tholus-navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.tholus-navbar-container.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tholus-navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.tholus-logo {
  flex: 0 0 auto;
}

.tholus-logo-image {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.scrolled .tholus-logo-image {
  height: 35px;
}

.tholus-main-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.tholus-menu-items {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.tholus-menu-item {
  position: relative;
}

.tholus-menu-item a {
  display: inline-block;
  padding: 8px 16px;
  color: #121212;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  border-radius: 20px;
}

.tholus-menu-item a:hover {
  color: #5d3be8;
  background-color: rgba(93, 59, 232, 0.05);
}

.tholus-menu-item.current-menu-item a {
  color: #5d3be8;
  background-color: rgba(93, 59, 232, 0.08);
}

.cta-menu-item a {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  padding: 8px 20px;
}

.cta-menu-item a:hover {
  background: linear-gradient(135deg, #4a2fd6 0%, #2a9c80 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 59, 232, 0.2);
}

.tholus-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.tholus-mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #5d3be8;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ===== TICKER SCORREVOLE ===== */
.tholus-ticker-container {
  background-color: #1a1a1a;
  overflow: hidden;
  padding: 15px 0;
  position: relative;
  z-index: 100;
}

.tholus-ticker-content {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.tholus-ticker-text {
  color: white;
  font-weight: 600;
  margin-right: 30px;
  flex-shrink: 0;
  padding-left: 30px;
}

.tholus-ticker-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.tholus-ticker-track {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.tholus-ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.tholus-ticker-logo {
  height: 25px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.tholus-ticker-logo:hover {
  opacity: 1;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* JavaScript per la navbar nel caso volessi aggiungerlo */
/* 
document.addEventListener('DOMContentLoaded', function() {
  const navbar = document.querySelector('.tholus-navbar-container');
  
  window.addEventListener('scroll', function() {
    if (window.scrollY > 50) {
      navbar.classList.add('scrolled');
    } else {
      navbar.classList.remove('scrolled');
    }
  });
  
  // Mobile menu toggle
  const menuToggle = document.querySelector('.tholus-mobile-toggle');
  const mainMenu = document.querySelector('.tholus-main-menu');
  
  menuToggle.addEventListener('click', function() {
    mainMenu.classList.toggle('active');
    menuToggle.classList.toggle('active');
  });
});
*/

/* Media Queries per Responsività */
@media (max-width: 992px) {
  .tholus-navbar-content {
    padding: 12px 20px;
  }
  
  .tholus-menu-item a {
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .tholus-mobile-toggle {
    display: flex;
  }
  
  .tholus-main-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
  }
  
  .tholus-main-menu.active {
    display: block;
  }
  
  .tholus-menu-items {
    flex-direction: column;
    gap: 15px;
  }
  
  .tholus-menu-item {
    width: 100%;
    text-align: center;
  }
  
  .tholus-menu-item a {
    display: block;
    padding: 12px;
  }
  
  .tholus-ticker-text {
    display: none;
  }
  
  .tholus-ticker-container {
    padding: 10px 0;
  }
  
  .tholus-ticker-logo {
    height: 20px;
  }
  
  .tholus-ticker-item {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .tholus-logo-image {
    height: 30px;
  }
  
  .tholus-navbar-content {
    padding: 10px 15px;
  }
  
  .tholus-ticker-item {
    padding: 0 10px;
  }
  
  .tholus-ticker-logo {
    height: 18px;
  }
}

/* Sezione Le Nostre Soluzioni */
.tholus-solutions-container {
  padding: 100px 20px;
  background-color: #f8f9fc;
  position: relative;
  overflow: hidden;
}

.tholus-solutions-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tholus-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.tholus-section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  border-radius: 3px;
}

.tholus-section-subtitle {
  font-size: 18px;
  color: #565656;
  line-height: 1.6;
}

/* Tab Navigation */
.tholus-tab-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  position: relative;
  flex-wrap: wrap;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tholus-tab-nav:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(93, 59, 232, 0.1);
}

.tholus-tab-nav-item {
  padding: 15px 25px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(93, 59, 232, 0.1);
  border-bottom: none;
  background-color: white;
  text-align: center;
  min-width: 170px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tholus-tab-nav-item.active {
  background: linear-gradient(to bottom, rgba(93, 59, 232, 0.05) 0%, white 100%);
  border-color: rgba(93, 59, 232, 0.3);
  box-shadow: 0 -5px 15px rgba(93, 59, 232, 0.1);
}

.tholus-tab-nav-item:hover:not(.active) {
  background-color: rgba(93, 59, 232, 0.02);
  transform: translateY(-3px);
}

.tab-icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: #5d3be8;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(93, 59, 232, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tholus-tab-nav-item.active .tab-icon {
  background-color: rgba(93, 59, 232, 0.2);
  transform: scale(1.1);
}

.tholus-tab-nav-item span {
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

/* Tab Content */
.tholus-tab-content-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.tholus-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(93, 59, 232, 0.1);
  overflow: hidden;
}

.tholus-tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.tholus-tab-content-inner {
  display: flex;
  align-items: stretch;
}

.tholus-tab-image {
  flex: 0 0 45%;
  overflow: hidden;
  position: relative;
}

.tholus-tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.tholus-tab-content:hover .tholus-tab-image img {
  transform: scale(1.05);
}

.tholus-tab-text {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.tholus-tab-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #5d3be8;
  font-weight: 700;
}

.tholus-tab-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #565656;
  margin-bottom: 25px;
}

.tholus-tab-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.tholus-tab-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  width: calc(50% - 10px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(93, 59, 232, 0.1);
  border-radius: 50%;
  font-size: 18px;
  color: #5d3be8;
  flex-shrink: 0;
}

.feature-text {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.tholus-tab-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: auto; /* Push to bottom */
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.2);
}

.tholus-tab-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(93, 59, 232, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .tholus-section-title {
    font-size: 32px;
  }
  
  .tholus-section-subtitle {
    font-size: 16px;
  }
  
  .tholus-tab-content-inner {
    flex-direction: column;
  }
  
  .tholus-tab-image {
    flex: 0 0 100%;
    height: 250px;
  }
  
  .tholus-tab-feature {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .tholus-solutions-container {
    padding: 60px 15px;
  }
  
  .tholus-tab-nav-item {
    padding: 10px 15px;
    min-width: calc(50% - 10px);
  }
  
  .tholus-tab-text {
    padding: 30px 20px;
  }
  
  .tholus-tab-text h3 {
    font-size: 22px;
  }
  
  .tholus-tab-text p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .tholus-section-title {
    font-size: 28px;
  }
  
  .tholus-tab-nav-item {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(93, 59, 232, 0.1);
  }
  
  .tholus-tab-nav:after {
    display: none;
  }
  
  .feature-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .tholus-tab-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Sezione Perché Scegliere TholusDome */
.tholus-why-us-container {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Riutilizzo delle classi esistenti per header, abbiamo già definito:
.tholus-solutions-header
.tholus-section-title
.tholus-section-subtitle */

/* Grid dei vantaggi */
.tholus-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.tholus-advantage-card {
  background-color: white;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(93, 59, 232, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(93, 59, 232, 0.05);
}

.tholus-advantage-card:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #5d3be8, #3bbd9e);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.tholus-advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(93, 59, 232, 0.15);
}

.tholus-advantage-card:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Icone Animate */
.tholus-advantage-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.tholus-advantage-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(93, 59, 232, 0.1) 0%, rgba(59, 189, 158, 0.1) 100%);
  border-radius: 50%;
  font-size: 32px;
  color: #5d3be8;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.tholus-advantage-icon-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(93, 59, 232, 0.1);
  z-index: 1;
  animation: advantage-pulse 2s infinite;
}

@keyframes advantage-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.tholus-advantage-card:hover .tholus-advantage-icon {
  color: white;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  transform: scale(1.1);
}

/* Testo */
.tholus-advantage-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.tholus-advantage-card:hover .tholus-advantage-title {
  color: #5d3be8;
}

.tholus-advantage-text {
  font-size: 15px;
  line-height: 1.6;
  color: #565656;
}

/* Pattern di sfondo */
.tholus-why-us-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(93, 59, 232, 0.03) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .tholus-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .tholus-why-us-container {
    padding: 60px 15px;
  }
  
  .tholus-advantage-card {
    padding: 30px 20px;
  }
  
  .tholus-advantage-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .tholus-advantage-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .tholus-advantage-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .tholus-advantages-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  
  .tholus-advantage-card {
    padding: 25px 20px;
  }
}

/* Sezione Perché Scegliere TholusDome */
.tholus-why-us-container {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Riutilizzo delle classi esistenti per header, abbiamo già definito:
.tholus-solutions-header
.tholus-section-title
.tholus-section-subtitle */

/* Grid dei vantaggi */
.tholus-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.tholus-advantage-card {
  background-color: white;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(93, 59, 232, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(93, 59, 232, 0.05);
}

.tholus-advantage-card:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #5d3be8, #3bbd9e);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.tholus-advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(93, 59, 232, 0.15);
}

.tholus-advantage-card:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Icone Animate */
.tholus-advantage-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.tholus-advantage-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(93, 59, 232, 0.1) 0%, rgba(59, 189, 158, 0.1) 100%);
  border-radius: 50%;
  font-size: 32px;
  color: #5d3be8;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.tholus-advantage-icon-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(93, 59, 232, 0.1);
  z-index: 1;
  animation: advantage-pulse 2s infinite;
}

@keyframes advantage-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.tholus-advantage-card:hover .tholus-advantage-icon {
  color: white;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  transform: scale(1.1);
}

/* Testo */
.tholus-advantage-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.tholus-advantage-card:hover .tholus-advantage-title {
  color: #5d3be8;
}

.tholus-advantage-text {
  font-size: 15px;
  line-height: 1.6;
  color: #565656;
}

/* Pattern di sfondo */
.tholus-why-us-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(93, 59, 232, 0.03) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .tholus-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .tholus-why-us-container {
    padding: 60px 15px;
  }
  
  .tholus-advantage-card {
    padding: 30px 20px;
  }
  
  .tholus-advantage-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .tholus-advantage-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .tholus-advantage-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .tholus-advantages-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  
  .tholus-advantage-card {
    padding: 25px 20px;
  }
}

/* Sezione Showcase */
.tholus-showcase-container {
  padding: 90px 20px;
  background-color: #ffffff;
  position: relative;
}

/* Slider principale */
.tholus-showcase-slider {
  max-width: 1000px;
  margin: 50px auto 40px;
  position: relative;
  overflow: hidden;
}

.tholus-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
}

.tholus-showcase-slide {
  flex: 0 0 100%;
  padding: 0 10px;
  transition: opacity 0.3s ease;
}

/* Contenuto di ogni slide */
.tholus-showcase-content {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tholus-showcase-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(93, 59, 232, 0.15);
}

.tholus-showcase-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.tholus-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tholus-showcase-content:hover .tholus-showcase-image img {
  transform: scale(1.05);
}

/* Tag categorie */
.tholus-showcase-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tholus-showcase-tag.cultural {
  background-color: rgba(93, 59, 232, 0.9);
  color: white;
}

.tholus-showcase-tag.corporate {
  background-color: rgba(59, 189, 158, 0.9);
  color: white;
}

.tholus-showcase-tag.institutional {
  background-color: rgba(240, 180, 0, 0.9);
  color: white;
}

/* Testo della slide */
.tholus-showcase-text {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tholus-showcase-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.tholus-showcase-description {
  font-size: 16px;
  line-height: 1.6;
  color: #565656;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.tholus-showcase-description:before {
  content: '"';
  position: absolute;
  left: -15px;
  top: -5px;
  font-size: 30px;
  color: rgba(93, 59, 232, 0.2);
}

.tholus-showcase-client {
  font-size: 14px;
  font-weight: 600;
  color: #5d3be8;
  margin-bottom: 20px;
  margin-top: auto;
}

.tholus-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5d3be8;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.tholus-showcase-link:after {
  content: '→';
  transition: transform 0.3s ease;
}

.tholus-showcase-link:hover {
  color: #3bbd9e;
}

.tholus-showcase-link:hover:after {
  transform: translateX(5px);
}

/* Controlli di navigazione */
.tholus-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 15px;
}

.tholus-slider-prev,
.tholus-slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid rgba(93, 59, 232, 0.2);
  color: #5d3be8;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tholus-slider-prev:hover,
.tholus-slider-next:hover {
  background-color: #5d3be8;
  color: white;
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.2);
}

.tholus-slider-dots {
  display: flex;
  gap: 8px;
}

.tholus-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(93, 59, 232, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tholus-slider-dot.active {
  width: 30px;
  border-radius: 10px;
  background-color: #5d3be8;
}

/* CTA */
.tholus-showcase-cta-container {
  text-align: center;
  margin-top: 40px;
}

.tholus-showcase-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.2);
}

.tholus-showcase-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(93, 59, 232, 0.3);
}

/* Media Queries */
@media (max-width: 768px) {
  .tholus-showcase-container {
    padding: 60px 15px;
  }
  
  .tholus-showcase-image {
    height: 220px;
  }
  
  .tholus-showcase-text {
    padding: 20px;
  }
  
  .tholus-showcase-title {
    font-size: 20px;
  }
  
  .tholus-showcase-description {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .tholus-showcase-image {
    height: 180px;
  }
  
  .tholus-showcase-tag {
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 10px;
  }
  
  .tholus-showcase-text {
    padding: 15px;
  }
  
  .tholus-showcase-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .tholus-showcase-description {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .tholus-showcase-client {
    font-size: 12px;
    margin-bottom: 15px;
  }
  
  .tholus-showcase-link {
    font-size: 14px;
  }
}

/* Sezione Creative Exchange */
.tholus-creative-exchange-container {
  padding: 0;
  background-color: #f8f9fc;
  position: relative;
  overflow: hidden;
}

.tholus-creative-exchange-wrapper {
  display: flex;
  min-height: 600px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Metà immagine */
.tholus-creative-exchange-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.tholus-creative-exchange-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 1s ease;
}

.tholus-creative-exchange-container:hover .tholus-creative-exchange-image img {
  transform: scale(1.05);
}

.tholus-creative-exchange-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(93, 59, 232, 0.4), rgba(59, 189, 158, 0.4));
  opacity: 0.7;
}

/* Metà testo */
.tholus-creative-exchange-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: white;
}

.tholus-creative-exchange-badge {
  display: inline-block;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.2);
}

.tholus-creative-exchange-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.tholus-creative-exchange-subtitle {
  font-size: 18px;
  color: #565656;
  margin-bottom: 30px;
}

/* Lista benefici */
.tholus-creative-exchange-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.tholus-creative-exchange-benefit {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 5px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  border-radius: 50%;
  margin-right: 15px;
}

.benefit-text {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.benefit-text strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* CTA */
.tholus-creative-exchange-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.2);
  transition: all 0.3s ease;
}

.tholus-creative-exchange-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(93, 59, 232, 0.3);
}

.tholus-creative-exchange-cta:after {
  content: '→';
  font-size: 18px;
  transition: transform 0.3s ease;
}

.tholus-creative-exchange-cta:hover:after {
  transform: translateX(5px);
}

/* Mini testimonial */
.tholus-creative-exchange-testimonial {
  display: flex;
  align-items: center;
  background-color: rgba(93, 59, 232, 0.05);
  border-radius: 12px;
  padding: 20px;
  border-left: 3px solid #5d3be8;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.2);
  margin-right: 15px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-size: 14px;
  font-style: italic;
  color: #333;
  margin-bottom: 5px;
  position: relative;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: #5d3be8;
}

/* Responsive */
@media (max-width: 1024px) {
  .tholus-creative-exchange-wrapper {
    min-height: 500px;
  }
  
  .tholus-creative-exchange-content {
    padding: 40px;
  }
  
  .tholus-creative-exchange-title {
    font-size: 28px;
  }
  
  .tholus-creative-exchange-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .tholus-creative-exchange-wrapper {
    flex-direction: column;
    min-height: auto;
  }
  
  .tholus-creative-exchange-image {
    height: 300px;
    position: relative;
  }
  
  .tholus-creative-exchange-image img {
    position: relative;
  }
  
  .tholus-creative-exchange-content {
    padding: 30px;
  }
  
  .benefit-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .benefit-text {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .tholus-creative-exchange-image {
    height: 200px;
  }
  
  .tholus-creative-exchange-content {
    padding: 25px 20px;
  }
  
  .tholus-creative-exchange-title {
    font-size: 24px;
  }
  
  .tholus-creative-exchange-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .tholus-creative-exchange-benefit {
    margin-bottom: 12px;
  }
  
  .benefit-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-right: 10px;
  }
  
  .benefit-text {
    font-size: 14px;
  }
  
  .tholus-creative-exchange-cta {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }
  
  .tholus-creative-exchange-testimonial {
    padding: 15px;
  }
  
  .testimonial-image {
    width: 50px;
    height: 50px;
  }
  
  .testimonial-text {
    font-size: 13px;
  }
  
  .testimonial-author {
    font-size: 12px;
  }
}

/* Sezione Il Nostro Processo */
.tholus-process-container {
  padding: 90px 20px;
  background-color: #f8f9fc;
  position: relative;
  overflow: hidden;
}

/* Timeline dei processi */
.tholus-process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 60px auto 40px;
  max-width: 1400px;
  position: relative;
  padding: 0 20px;
}

.tholus-process-step {
  flex: 0 0 auto;
  width: 180px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 20px 10px 30px; /* Aumenta padding bottom */
  background-color: white;
  border-radius: 15px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.08);
  cursor: pointer;
  min-height: 230px; /* Altezza minima per tutte le card */
}

.tholus-process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(93, 59, 232, 0.15);
  z-index: 3;
}

.tholus-process-step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(93, 59, 232, 0.2);
}

.tholus-process-step:hover .tholus-process-hover {
  opacity: 1;
  visibility: visible; /* Rende visibile al passaggio del mouse */
  top: 110px; /* Posiziona il contenuto dopo l'icona e il titolo */
  height: auto; /* Altezza automatica in base al contenuto */
}

.tholus-process-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 15px;
  font-size: 24px;
  color: #5d3be8;
  background-color: rgba(93, 59, 232, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tholus-process-step:hover .tholus-process-icon {
  transform: scale(1.1);
  color: white;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
}

.tholus-process-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tholus-process-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
  transition: opacity 0.3s ease;
}

.tholus-process-step:hover .tholus-process-description {
  opacity: 0;
}

/* Hover content */
.tholus-process-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden; /* Inizialmente nascosto completamente */
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 15px;
  pointer-events: none;
  background-color: white; /* Aggiunge sfondo per evitare trasparenze */
}

.tholus-process-step:hover .tholus-process-hover {
  opacity: 1;
}

.tholus-process-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%; /* Occupa tutta la larghezza disponibile */
}

.tholus-process-details li {
  font-size: 12px;
  color: #333;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.tholus-process-details li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #5d3be8;
}

/* Connettori */
.tholus-process-connector {
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* CTA */
.tholus-process-cta-container {
  text-align: center;
  margin-top: 30px;
}

.tholus-process-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.2);
}

.tholus-process-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(93, 59, 232, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
  .tholus-process-timeline {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 20px;
  }
  
  .tholus-process-step {
    width: 160px;
  }
}

@media (max-width: 768px) {
  .tholus-process-container {
    padding: 60px 15px;
  }
  
  .tholus-process-timeline {
    flex-direction: column;
    align-items: center;
    margin: 40px auto 30px;
  }
  
  .tholus-process-step {
    width: 100%;
    max-width: 320px;
    margin-bottom: 30px;
  }
  
  .tholus-process-connector {
    transform: rotate(90deg);
    height: 40px;
    margin: 0;
  }
  
  .tholus-process-title {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .tholus-process-step {
    max-width: 280px;
  }
  
  .tholus-process-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .tholus-process-title {
    font-size: 15px;
  }
  
  .tholus-process-description,
  .tholus-process-details li {
    font-size: 13px;
  }
  
  .tholus-process-details li {
    padding-left: 12px;
  }
  
  .tholus-process-details li:before {
    width: 5px;
    height: 5px;
  }
  
  .tholus-process-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Sezione Configuratori */
.tholus-configurator-container {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(93, 59, 232, 0.05) 0%, rgba(59, 189, 158, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.tholus-configurator-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="rgba(93, 59, 232, 0.05)"/></svg>');
  background-size: 20px 20px;
  opacity: 0.8;
}

.tholus-configurator-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tholus-configurator-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 15px;
}

.tholus-configurator-subtitle {
  font-size: 18px;
  color: #565656;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tholus-configurator-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tholus-configurator-option {
  background-color: white;
  border-radius: 15px;
  padding: 35px 30px;
  width: 46%;
  max-width: 450px;
  box-shadow: 0 10px 25px rgba(93, 59, 232, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tholus-configurator-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(93, 59, 232, 0.15);
}

.tholus-configurator-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(93, 59, 232, 0.1) 0%, rgba(59, 189, 158, 0.1) 100%);
  border-radius: 50%;
  font-size: 28px;
  color: #5d3be8;
  transition: all 0.3s ease;
}

.tholus-configurator-option:hover .tholus-configurator-icon {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  transform: scale(1.1);
}

.tholus-configurator-option-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.tholus-configurator-option-text {
  font-size: 16px;
  color: #565656;
  margin-bottom: 25px;
  line-height: 1.6;
}

.tholus-configurator-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.2);
}

.tholus-configurator-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(93, 59, 232, 0.3);
}

.tholus-configurator-button i {
  transition: transform 0.3s ease;
}

.tholus-configurator-button:hover i {
  transform: translateX(5px);
}

.tholus-configurator-note {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 15px 20px;
  margin-top: 40px;
  border-left: 3px solid #5d3be8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.note-icon {
  font-size: 20px;
  color: #5d3be8;
  flex-shrink: 0;
}

.tholus-configurator-note p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .tholus-configurator-title {
    font-size: 28px;
  }
  
  .tholus-configurator-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .tholus-configurator-container {
    padding: 60px 15px;
  }
  
  .tholus-configurator-options {
    flex-direction: column;
    align-items: center;
  }
  
  .tholus-configurator-option {
    width: 100%;
  }
  
  .tholus-configurator-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .tholus-configurator-option-title {
    font-size: 20px;
  }
  
  .tholus-configurator-option-text {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .tholus-configurator-title {
    font-size: 24px;
  }
  
  .tholus-configurator-subtitle {
    font-size: 15px;
  }
  
  .tholus-configurator-option {
    padding: 25px 20px;
  }
  
  .tholus-configurator-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .tholus-configurator-option-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .tholus-configurator-button {
    width: 100%;
    justify-content: center;
  }
  
  .tholus-configurator-note {
    padding: 12px 15px;
  }
}

/* Sezione Luna Dolph e Contenuti Esclusivi */
.tholus-luna-container {
  padding: 90px 20px;
  background-color: #0d0f1b;
  position: relative;
  overflow: hidden;
  color: white;
}

.tholus-luna-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

/* Colonna Video */
.tholus-luna-video-column {
  flex: 1;
}

.tholus-luna-video-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(93, 59, 232, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.tholus-luna-video-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.tholus-luna-video {
  width: 100%;
  height: auto;
  display: block;
}

.tholus-luna-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(93, 59, 232, 0.2) 0%, rgba(59, 189, 158, 0.2) 100%);
  pointer-events: none;
}

.tholus-luna-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(93, 59, 232, 0.4);
  opacity: 0;
  transition: all 0.3s ease;
}

.tholus-luna-video-wrapper:hover .tholus-luna-play-button {
  opacity: 1;
}

/* Colonna Contenuto */
.tholus-luna-content-column {
  flex: 1;
  padding: 20px;
}

.tholus-luna-badge {
  display: inline-block;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.3);
}

.tholus-luna-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.tholus-luna-description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Features */
.tholus-luna-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.tholus-luna-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.luna-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 18px;
  color: #5d3be8;
  transition: all 0.3s ease;
}

.tholus-luna-feature:hover .luna-feature-icon {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  transform: scale(1.1);
}

.luna-feature-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA */
.tholus-luna-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.3);
}

.tholus-luna-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(93, 59, 232, 0.5);
}

.tholus-luna-cta i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.tholus-luna-cta:hover i {
  transform: translateX(3px);
}

/* Decorazioni di sfondo */
.tholus-luna-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(93, 59, 232, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 189, 158, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
  .tholus-luna-wrapper {
    flex-direction: column;
  }
  
  .tholus-luna-video-wrapper {
    transform: perspective(1000px) rotateY(0);
    margin-bottom: 20px;
  }
  
  .tholus-luna-title {
    font-size: 28px;
  }
  
  .tholus-luna-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .tholus-luna-container {
    padding: 60px 15px;
  }
  
  .tholus-luna-title {
    font-size: 24px;
  }
  
  .tholus-luna-description {
    font-size: 15px;
  }
  
  .luna-feature-text {
    font-size: 15px;
  }
  
  .tholus-luna-play-button {
    opacity: 1;
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .tholus-luna-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .tholus-luna-title {
    font-size: 22px;
  }
  
  .tholus-luna-cta {
    width: 100%;
    justify-content: center;
  }
  
  .luna-feature-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Banner Pre-Footer */
.tholus-prefooter {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.tholus-prefooter:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><circle cx="3" cy="3" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: -1;
}

.tholus-prefooter-dots {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M0,0 L20,20 L40,0" stroke="rgba(255,255,255,0.2)" stroke-width="1" fill="none"/></svg>');
  background-size: 40px 40px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.tholus-prefooter-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.tholus-prefooter-text {
  flex: 1;
  color: white;
  padding-right: 40px;
}

.tholus-prefooter-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tholus-prefooter-text p {
  font-size: 18px;
  opacity: 0.9;
}

.tholus-prefooter-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  color: #5d3be8;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tholus-prefooter-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-main {
  font-size: 18px;
}

.cta-sub {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 3px;
}

/* Footer Principale */
.tholus-footer {
  background-color: #131523;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 20px 0;
  position: relative;
}

.tholus-footer-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.tholus-footer-column {
  flex: 1;
  min-width: 250px;
}

.brand-column {
  flex: 1.5;
}

.tholus-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
}

.tholus-footer-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.tholus-social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-icon:hover {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  transform: translateY(-3px);
}

.tholus-footer-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.tholus-footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #5d3be8, #3bbd9e);
  border-radius: 3px;
}

.tholus-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tholus-footer-links li {
  margin-bottom: 12px;
}

.tholus-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.tholus-footer-links a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #5d3be8;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.tholus-footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.tholus-footer-links a:hover:before {
  background-color: #3bbd9e;
}

.tholus-footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #5d3be8;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}

.contact-link {
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-link:hover {
  color: #3bbd9e;
}

.contact-address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Form di contatto */
.tholus-footer-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group textarea {
  height: 80px;
  resize: none;
}

.form-group label {
  position: absolute;
  left: 15px;
  top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left top;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
  border-color: #5d3be8;
  background-color: rgba(255, 255, 255, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-20px) scale(0.85);
  color: #3bbd9e;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

.tholus-footer-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tholus-footer-submit:hover {
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.3);
  transform: translateY(-2px);
}

.tholus-footer-submit i {
  transition: all 0.3s ease;
}

.tholus-footer-submit:hover i {
  transform: translateX(3px);
}

/* Newsletter */
.tholus-newsletter {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}

.newsletter-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: none;
  color: white;
  font-size: 14px;
}

.newsletter-form button {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #4a2fd6 0%, #2a9c80 100%);
}

/* Bottom Footer */
.tholus-footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tholus-footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tholus-footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.tholus-footer-copyright a {
  color: #3bbd9e;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tholus-footer-copyright a:hover {
  color: white;
}

.tholus-footer-links-bottom {
  display: flex;
  gap: 20px;
}

.tholus-footer-links-bottom a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tholus-footer-links-bottom a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .tholus-prefooter-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .tholus-prefooter-text {
    padding-right: 0;
  }
  
  .tholus-footer-column {
    flex: 1 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .tholus-prefooter {
    padding: 40px 20px;
  }
  
  .tholus-prefooter-text h2 {
    font-size: 26px;
  }
  
  .tholus-prefooter-text p {
    font-size: 16px;
  }
  
  .tholus-footer {
    padding: 50px 20px 0;
  }
  
  .tholus-footer-content {
    gap: 30px;
  }
  
  .tholus-footer-column {
    flex: 1 0 100%;
  }
  
  .tholus-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .tholus-footer-links-bottom {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .tholus-prefooter-text h2 {
    font-size: 22px;
  }
  
  .tholus-prefooter-text p {
    font-size: 15px;
  }
  
  .tholus-prefooter-cta {
    width: 100%;
  }
  
  .tholus-footer-title {
    font-size: 18px;
  }
  
  .tholus-footer-links-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

.tholus-hero-container {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.tholus-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 250px);
  z-index: 1;
  overflow: hidden;
}

.tholus-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: 1;
  max-height: 100%;
}

.tholus-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0.7) 0%, 
    rgba(0,0,0,0.5) 70%, 
    rgba(240,243,250,1) 95%); /* Modifica questo colore per match lo sfondo azzurro chiaro */
  z-index: 2;
}

/* Contenuto principale */
.tholus-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px;
  max-width: 1200px;
  color: white;
}

.tholus-hero-background::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px; /* Abbastanza alto da coprire la transizione */
  bottom: -50px; /* Posizionato per coprire la transizione */
  background: linear-gradient(to bottom, 
    rgba(240,243,250,0) 0%, 
    rgba(240,243,250,1) 100%); /* Gradiente che sfuma verso il colore dello sfondo */
  z-index: 5; /* Assicurati che sia sopra tutto il resto */
}

@media (max-width: 768px) {
  .tholus-hero-background {
    height: 40%; /* Altezza ridotta per mobile */
  }
  
  .tholus-hero-content {
    padding-bottom: 40px; /* Padding aggiuntivo per mobile */
  }
  
  .tholus-video-overlay {
    background: linear-gradient(to bottom, 
      rgba(0,0,0,0.7) 0%, 
      rgba(0,0,0,0.5) 50%, 
      rgba(240,243,250,1) 90%);
  }

.tholus-hero-background::after {
    height: 150px; /* Più alto per mobile */
    bottom: -70px; /* Posizionato diversamente su mobile */
  }

}

/* --------------------
   LIGHTBOX LUNA DOLPH
   -------------------- */
/* Nascondi di default */
#lunaLightbox.luna-lightbox {
  display: none !important;
  position: fixed !important;
  top: 0; left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0,0,0,0.85) !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 99999 !important;
  pointer-events: auto !important;
}

/* Quando riceve .open diventa visibile */
#lunaLightbox.luna-lightbox.open {
  display: flex !important;
}

/* Contenuto interno */
#lunaLightbox .luna-lightbox-content {
  position: relative !important;
  max-width: 80vw !important;
  max-height: 80vh !important;
}

/* Video dentro il lightbox */
#lunaLightbox .luna-lightbox-video {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* Pulsante di chiusura */
#lunaLightbox .luna-close {
  position: absolute !important;
  top: -12px !important;
  right: -12px !important;
  background: #fff !important;
  border: none !important;
  font-size: 1.2rem !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  line-height: 1 !important;
}

/* Assicura che il play-button stia sopra l’overlay */
.tholus-luna-video-wrapper {
  position: relative !important;
}
.tholus-luna-overlay {
  position: absolute !important;
  top:0; left:0 !important;
  width:100%; height:100% !important;
  background: rgba(0,0,0,0.3) !important;
  z-index: 1 !important;
  /* se vuoi che non blocchi il click: pointer-events: none; */
}
.tholus-luna-play-button {
  position: absolute !important;
  top:50%; left:50% !important;
  transform: translate(-50%,-50%) !important;
  z-index: 2 !important;
  cursor: pointer !important;
}

/* forza il wrapper a 80% della viewport */
#lunaLightbox .luna-lightbox-content {
  width: 80vw !important;
  max-width: 80vw !important;
  /* (puoi anche aggiungere height se vuoi un ratio fisso) */
}

/* video sempre grande dentro il wrapper */
#lunaLightbox .luna-lightbox-video {
  width: 100% !important;
  max-height: 80vh !important;
  height: auto !important;
}

/* Compatibilità Contact Form 7 con stile TholusDome */
.wpcf7 {
    margin: 0 !important;
    padding: 0 !important;
}

.wpcf7 .tholus-footer-form {
    margin-bottom: 30px;
}

.wpcf7 .form-group {
    margin-bottom: 15px;
    position: relative;
}

.wpcf7 .custom-input,
.wpcf7 .custom-textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wpcf7 .custom-textarea {
    height: 80px;
    resize: none;
}

.wpcf7 .form-group label {
    position: absolute;
    left: 15px;
    top: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s ease;
    transform-origin: left top;
}

.wpcf7 .form-group .custom-input:focus,
.wpcf7 .form-group .custom-textarea:focus,
.wpcf7 .form-group .custom-input:not(:placeholder-shown),
.wpcf7 .form-group .custom-textarea:not(:placeholder-shown) {
    border-color: #5d3be8;
    background-color: rgba(255, 255, 255, 0.1);
}

.wpcf7 .form-group .custom-input:focus + label,
.wpcf7 .form-group .custom-textarea:focus + label,
.wpcf7 .form-group .custom-input:not(:placeholder-shown) + label,
.wpcf7 .form-group .custom-textarea:not(:placeholder-shown) + label {
    transform: translateY(-20px) scale(0.85);
    color: #3bbd9e;
}

.wpcf7 .form-group .custom-input::placeholder,
.wpcf7 .form-group .custom-textarea::placeholder {
    color: transparent;
}

.wpcf7 .ajax-loader {
    position: absolute !important;
    margin: 0 !important;
    right: 10px;
}

/* Nasconde i messaggi di errore predefiniti di CF7 */
.wpcf7 .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 5px;
}

.wpcf7 .wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 10px !important;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}/* End custom CSS */