@charset "UTF-8";
/* CSS Document */

/* CONTENITORE - 100% width, 3 colonne uguali */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 25px 0;
  justify-content: center;
}

/* BOTTONE - 1/3 della base (desktop) */
.btn {
  flex: 1 0 33.333%;
  padding: 2px 0;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 200%;
  transition: all 0.3s ease;
  color: #666666;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* BOTTONE 1 - COLORI PERSONALIZZATI */
.btn-1 {
  background-color: #e0e0e0; /* Grigio chiaro */
}
.btn-1:hover {
  background-color: #d0d0d0; /* Grigio medio */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* BOTTONE 2 - COLORI PERSONALIZZATI */
.btn-2 {
  background-color: #d0d0d0; /* Grigio scuro */
}
.btn-2:hover {
  background-color: #b0b0b0; /* Grigio scuro + hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* BOTTONE 3 - COLORI PERSONALIZZATI */
.btn-3 {
  background-color: #e0e0e0; /* Grigio antracite */
}
.btn-3:hover {
  background-color: #d0d0d0; /* Grigio antracite + hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* RESPONSIVE - Mobile */
@media (max-width: 768px) {
  .btn {
    flex: 1 0 100%;
    margin: 5px 0;
  }
}


/* Sezione libro promozione--------------------------------------------------------------------------- */
.book-promo-section {
    background: #e6e6e6;
    border-radius: 47px;
    padding: 25px;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.05);*/
}

.label-published {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #8b4513;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.main-title {
    color: #002b5c;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #002b5c;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #444;
    padding: 8px 0;
}

.feature-item i {
    color: #8b4513;
    font-size: 1.3rem;
}

.buttons .btn {
   /* height: 50px;*/
    font-size: 1.5rem;
 font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: #8b4513;
    border-color: #8b4513;
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background-color: #6b350a;
    border-color: #6b350a;
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: white;
    border-color: #6b350a;
    color: #8b4513;
    width: 100%;
}

.btn-outline-primary:hover {
    background-color: #8b4513;
    color: white;
    transform: translateY(-2px);
}

.book-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
   /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);*/
    transition: transform 0.3s;
}

.book-image:hover {
    transform: scale(1.03);
}

/* Media queries per mobile */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .book-promo-section {
        padding: 20px 15px;
    }
}
/* fine Sezione libro promozione--------------------------------------------------------------------------- */


/* Sezione citazione e feature */
.quote-feature-section {
   /* background: #f8f9fa;*/
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,1);
    margin-top: 25px;
	margin-right: 6%;
		margin-left: 6%;
}

.quote-container {
    position: relative;
    padding-left: 60px;
}

.quote-mark {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 4rem;
    color: #d4af37;
    line-height: 1;
    font-family: serif;
    font-weight: 300;
}

.quote-text {
    font-size: 2.2rem;
    /*font-style: italic;*/
    line-height: 1.2;
    color: #333;
    margin-bottom: 15px;
	font-family: 'Great Vibes', cursive;
}

.quote-author {
    font-weight: 600;
    font-size: 1.1rem;
    color: #002b5c;
    text-align: right;
    padding-right: 10px;
}

.features-grid {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #444;
	padding-top: 2%;
	padding-bottom: 2%;
	padding-left: 4%;
	padding-right: 2%;
}

.feature-item i {
    color: #8b4513;
    font-size: 1.8rem;
    margin-right: 15px;
}

.feature-item span {
    flex: 1;
}

/* Media queries per mobile */
@media (max-width: 768px) {
    .quote-mark {
        font-size: 3rem;
        top: 10px;
    }
    .quote-container {
        padding-left: 40px;
    }
    .quote-text {
        font-size: 2.1rem;
    }
    .quote-author {
        text-align: left;
        padding-right: 0;
        padding-left: 10px;
    }
    .feature-item {
        padding: 10px 0;
    }
    .feature-item i {
        font-size: 1.5rem;
        margin-right: 10px;
    }
	
	.feature-item.mt-3 {  
	margin-top: 0 !important;
}
}


/* -------------------------------------------------------------------------------Modulo protezione patrimoniale tutti */
.protection-module {
  text-align: center;
  border: 4px solid #e0e0e0;
  border-radius: 15px;
  padding: 25px 20px;
  background: white;
  transition: all 0.3s ease;
  max-width: 100%;
  margin: 0 auto;
}

.protection-module i {
  font-size: 3.2rem;
  color: #8b4513;
  display: block;
  margin-bottom: 18px;
  line-height: 1;
}

.protection-text {
  font-size: 1.3rem;
  /*font-weight: 600;*/
  color: #002b5c;
  line-height: 1;
  letter-spacing: 0.5px;
}

.protection-module:hover {
  border-color: #8b4513;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
  transform: translateY(-4px);
}


.protection-module {
  position: relative;
}

.module-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/* -------------------------------------------------------------------------------Modulo protezione patrimoniale tutti */


#sp-main-body {
      padding-top: 1% !important; 
    padding-right: 0% !important;
    padding-bottom: 1%!important;
    padding-left: 0% !important;
}



.btn-secondary {
  
  --bs-btn-bg: #e6e6e6 !important;
 
}



/* ------------------------------------------------------------------patrimonio modulo*/
/* ------------------------------------------------------------------patrimonio modulo*/
.patrimony-module {
  padding-top: 2%;
  padding-bottom: 2%;
  padding-left: 4%;
  padding-right: 0%;
  border-radius: 4px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Testi principali */
.header-text {
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  color: #8b4513;
}

.main-title {
  font-size: 4rem;
  color: #0a4b9d;
  line-height: 1;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.description {
  font-size: 2rem;
  line-height: 1.1;
  color: #333;
  margin-bottom: 25px;
}

/* Container icone */
.icons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 15px);
  flex-wrap: wrap;
  margin-top: 20px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
  flex: 0 0 auto;
}

/* Icone */
.icon-circle {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #8b4513;
  overflow: hidden;
  margin-bottom: 12px;
}

.icon-circle::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #8b4513;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.icon-circle i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 170%;
  color: white;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.icon-title {
  font-weight: 600;
  font-size: 130%;
  color: #000;
  margin-bottom: 5px;
  font-family: 'Barlow', sans-serif;
}

.icon-description {
  font-size: 110%;
  font-weight: normal;
  color: #555;
  line-height: 1.4;
  font-family: 'Barlow', sans-serif;
}

.icon-divider {
  color: #000;
  font-weight: lighter;
  font-size: 0rem;
  margin: 0 4%;
}

/* ==============================
   MEDIA QUERIES RESPONSIVE
============================== */

/* Tablet (1340px - 1741px) */
@media (min-width: 1340px) and (max-width: 1741px) {
  .patrimony-module {
    padding-left: 3%;
    padding-right: 3%;
  }
  
  .header-text {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .main-title {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .description {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .icon-circle {
    width: 45px;
    height: 45px;
  }
	 .icons-container {
    gap: clamp(6px, 2vw, 12px);
    margin-top: 25px;
  }
  
  .icon-circle i {
    font-size: 150%;
  }
  
  .icon-title {
    font-size: 110%;
  }
  
  .icon-description {
    font-size: 75%;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1334px) {
  .patrimony-module {
    padding-left: 1%;
    padding-right: 1%;
  }
  
  .header-text {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .main-title {
    font-size: 2.3rem;
    margin-bottom: 15px;
  }
  
  .description {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .icon-circle {
    width: 45px;
    height: 45px;
  }
	 .icons-container {
    gap: clamp(6px, 2vw, 6px);
    margin-top: 15px;
  }
  
  .icon-circle i {
    font-size: 150%;
  }
  
  .icon-title {
    font-size: 110%;
  }
  
  .icon-description {
    font-size: 75%;
  }
}

/* Mobile (fino a 767px) */
@media (max-width: 767px) {
  .patrimony-module {
    padding: 2% 2% 2%;
    text-align: left;
  }
  
  .header-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
	    line-height: 1;
  }
  
  .main-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    line-height: 1;
  }
  
  .description {
    font-size: 1.1rem;
    margin-bottom: 18px;
    line-height: 1.1;
  }
  
  .icons-container {
    gap: clamp(6px, 2vw, 1px);
    margin-top: 15px;
	  display: block;
  }
  
  .icon-circle {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .icon-circle i {
    font-size: 140%;
  }
  
  .icon-title {
    font-size: 110%;
    margin-bottom: 3px;
  }
  
  .icon-description {
    font-size: 95%;
    line-height: 1;
  }
  
  .icon-divider {
    margin: 0 3%;
  }
  
  /* Allineamento verticale per mobile */
  .icon-item {
   /* max-width: 45%;*/
  }
}

/* ---------------------------------------------------------------fine patrimonio modulo*/


/* ==============================
   MODULO CONSULENZA - 
============================== */

.consultation-module {
  background-color: #666666; /* Sfondo blu scuro */
  color: #ffffff;
  padding: 3% 1%;
  border-radius: 28px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
	 text-align: center; /*  CRUCIALE: centra tutti gli elementi inline/inline-block */
}

.consultation-module::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.module-title {
  font-size: 2,3rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.module-description {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 2vw, 15px);
  margin-bottom: 2.5rem;
  padding: 0 15px;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tag:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-button {
  display: inline-block;
  background: #e6e6e6; /* Colore */
  color: #000000;
  padding: 16px 45px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 50%;
  margin: 0 auto;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: #ffaa17;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-color: #ffaa17;
	color: #000000;
}

/* ==============================
   MEDIA QUERIES RESPONSIVE
============================== */

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .consultation-module {
    padding: 2.5% 4%;
  }
  
  .module-title {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  
  .module-description {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .tag {
    padding: 9px 18px;
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 14px 35px;
    font-size: 1.15rem;
  }
}

/* Mobile (fino a 767px) */
@media (max-width: 767px) {
  .consultation-module {
    padding: 4% 5%;
  }
  
  .module-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }
  
  .module-description {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.8rem;
  }
  
  .tags-container {
    gap: clamp(8px, 1.5vw, 12px);
    padding: 0 10px;
  }
  
  .tag {
    padding: 8px 15px;
    font-size: 0.85rem;
    min-width: 120px;
  }
  
  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  /* Allineamento verticale per mobile */
  .tags-container {
    justify-content: center;
  }
}

/* ==============================
   fine MODULO CONSULENZA - 
============================== */

.linea_chiusura {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1%;
}


/* ==============================
   MODULO INVITO EVENTI - 
============================== */

.event-buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  margin: 0 auto;
  max-width: 100%;
}

.event-button {
  flex: 0 0 calc(16.666% - 1.5rem);
  text-align: center;
  padding: 1.2rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.event-button i {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  color: #8b4513;
  line-height: 1;
}

.event-button span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.3;
}

.event-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #d4af37;
}

/* Pulsante principale (Proponi un evento) */
.event-button.primary {
  background: #d4af37;
  color: #ffffff;
  border: none;
}

.event-button.primary i,
.event-button.primary span {
  color: #ffffff;
}

.event-button.primary:hover {
  background: #b8952e;
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

/* Pulsante secondario (Richiedi una presentazione) */
.event-button.secondary {
  background: #f8f9fa;
  border: 2px solid #d4af37;
  color: #333333;
}

.event-button.secondary i,
.event-button.secondary span {
  color: #333333;
}

.event-button.secondary:hover {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* ==============================
   MEDIA QUERIES RESPONSIVE
============================== */

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .event-buttons-container {
    gap: 1.2rem;
    padding: 1.2rem 0;
  }
  
  .event-button {
    flex: 0 0 calc(33.333% - 1.2rem);
    padding: 1rem 0.6rem;
  }
  
  .event-button i {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  
  .event-button span {
    font-size: 0.95rem;
  }
}

/* Mobile (fino a 767px) */
@media (max-width: 767px) {
  .event-buttons-container {
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .event-button {
    flex: 0 0 calc(50% - 1rem);
    padding: 1rem 0.5rem;
  }
  
  .event-button i {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }
  
  .event-button span {
    font-size: 0.85rem;
    line-height: 1.2;
  }
  
  /* Per schermi molto piccoli (320px) */
  @media (max-width: 480px) {
    .event-button {
      flex: 0 0 100%;
      max-width: 100%;
      margin: 0 auto;
    }
    
    .event-button span {
      font-size: 0.9rem;
    }
  }
}
/* ==============================
  FINE MODULO INVITO EVENTI - 
============================== */


/* ==============================
   FAQ MODULO - HELIX ULTIMATE
   (2 COLONNE Responsive con più elementi)
============================== */

.faq {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.faq h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #0a4b9d;
}

/* CORREZIONE CHIAVE: UN SOLO GRID CONTAINER */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 1.8rem;
}

/* Stile standard per le FAQ */
details {
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s ease;
}

details summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1.15rem;
  color: #0a4b9d;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}

details summary::marker {
  display: none;
}

details summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  font-weight: bold;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details[open] {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

details p {
  padding: 0 1.5rem 1.2rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* ==============================
   MEDIA QUERIES RESPONSIVE
============================== */

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
  }
  
  details summary {
    font-size: 1.05rem;
    padding: 1rem 1.2rem;
  }
  
  details p {
    padding: 0 1.2rem 1rem;
  }
}

/* Mobile (fino a 767px) */
@media (max-width: 767px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  details summary {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }
  
  details p {
    padding: 0 1rem 0.9rem;
    font-size: 0.95rem;
  }
}


/* ==============================
   fine FAQ MODULO - HELIX ULTIMATE
   (2 COLONNE Responsive con più elementi)
============================== */
