        /* NUOVA PALETTE BASATA SUL COLORE PRINCIPALE */
        :root {
            --primary-color: #E819B3;
            --primary-dark: #B8138C;
            --primary-light: #FCE4F3;
            --primary-ultralight: #FEF6FB;
            --accent-color: #7a3d99; /* Viola come accento */
            --text-color: #444;
            --heading-color: #111;
            --white-color: #FFFFFF;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            line-height: 1.8;
            background-color: #ffffff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            color: var(--heading-color);
            font-weight: 800;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, #8a2be2, #c71585);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* --- [NUOVO] Top Bar --- */
        .top-bar {
		    background-color: #fef6fb;
		    padding: 0.5rem 0;
		    font-size: 0.85rem;
		    color: #b8138c;
		    position: fixed;
		    z-index: 1050;
		    width: 100%;
        }
        .top-bar a {
            color: #b8138c;
            text-decoration: none;
            font-weight: 500;
        }

        /* --- Navbar Variante --- */
        .navbar {
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0px 9px 25px -25px rgba(0, 0, 0, 0.5);
        }
        .navbar-brand {
            font-weight: 800;
            color: #b8138c;
        }
        .nav-link {
            font-weight: 700;
            color: #333;
        }
        .nav-link:hover, .nav-link.active {
            color: #e819b3;
        }

        /* --- Sezioni Variante --- */
        .section {
            padding: 70px 0;
            position: relative;
            overflow: hidden;
        }
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        .section-subtitle {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 60px auto;
            color: var(--text-color);
            font-weight: 400;
        }
        .bg-gradient-light {
            background: linear-gradient(180deg, #ffffff, #fef6fb);
        }
        .old-price {
            text-decoration: line-through;
            font-weight: 500;
            font-size: 0.75em;
        }
        /* --- Hero Section Variante --- */
        .hero {
            padding: 70px 0;
            background-color: #fef6fb;
            padding-bottom: 0px;
            box-shadow: 0px 18px 25px -25px rgba(0, 0, 0, 0.5);
            z-index: 1;
            position: relative;
        }
        
        .hero-icon-features { list-style: none; padding-left: 0; }
        .hero-icon-features li { 
	        margin-bottom: 0.5rem; 
	        font-weight: 500;     
	        list-style-type: decimal;
        }
        #home .hero-icon-features li { 
	        list-style-type: none;
        }
        .hero-icon-features .fa-check-circle { color: #e819b3; margin-right: 8px; }

        /* --- [NUOVO] Sezione "Per Chi È" --- */
        .feature-card {
            background-color: #ffffff;
            border: 1px solid #fce4f3;
            padding: 30px;
            border-radius: 15px;
            height: 100%;
            transition: all 0.3s ease;
        }
.feature-card.shadow {
    box-shadow: 0 0.5rem 17px -11px rgba(0, 0, 0, 0.5) !important;
}
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(232, 25, 179, 0.1) !important;
            border-color: #e819b3;
        }
        .feature-card .icon {
            font-size: 2.5rem;
            color: #e819b3;
            margin-bottom: 20px;
            text-align: center;
        }

        /* --- Sezione Chi Sono Variante --- */
        #chi-sono .profile-image-blob {
            clip-path: url(#blob-shape);
            max-width: 100%;
        }

        /* --- [IMPLEMENTATO] Sezione Testimonianze --- */
        .testimonial-card {
            background: linear-gradient(135deg, #7a3d99, #b8138c);
            color: #ffffff;
            border-radius: 20px;
            padding: 40px;
        }
        .testimonial-card .client-info img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 3px solid #ffffff;
        }
        .testimonial-card .client-info h5 { color: #ffffff; }
        .testimonial-card .client-info small { opacity: 0.8; }
        .carousel-indicators [data-bs-target] {
            background-color: #e819b3;
        }

        /* --- Timeline Variante --- */
        .timeline-v2 { border-left: 4px solid #fce4f3; }
        .timeline-v2-item { 
            position: relative;
            padding: 20px 0 20px 40px;
        }
        .timeline-v2-item::before {
            content: '';
            position: absolute;
            left: -12px;
            top: 30px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #e819b3;
            border: 4px solid #fce4f3;
        }
        .timeline-v2-item .step {
            font-weight: 800;
            color: #e819b3;
        }
        
        /* --- [NUOVO] CTA Finale --- */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(90deg, #7a3d99, #e819b3);
            color: #ffffff;
            border-radius: 20px;
        }
        .cta-section h2 { color: #ffffff; }
        .btn-light-outline {
            background-color: transparent;
            border: 2px solid #ffffff;
            color: #ffffff;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-light-outline:hover {
            background-color: #ffffff;
            color: #b8138c;
        }

        /* --- Footer --- */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
}
.footer a {
    color: #f1f1f1;
    text-decoration: none;
}

        /* --- [NUOVO] Sezione Contatori Animati --- */
        .counters-section {
            background-color: #fceef5;
        }
        .counter-box {
            color: #333232;
            font-size: 1.6rem;
        }
        .counter-box .counter {
            font-size: 3.5rem;
            font-weight: 900;
            color: #e819b3;
        }
        .counter-box p {
            font-size: 1.1rem;
            font-weight: 700;
            color: #333232;
            margin: 0;
        }
/* --- [SEZIONE MIGLIORATA] Testimonianze --- */
.testimonial-card-v2 {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #fce4f3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-quote-bg {
    position: absolute;
    top: 0px;
    left: 20px;
    font-size: 6rem;
    color: #e819b3;
    opacity: 0.08;
    z-index: 0;
}

.testimonial-text {
    position: relative;
    z-index: 1;
}

.stars {
    color: #FFC107; /* Giallo per le stelle */
    text-align:center;
    font-size: 1.2rem;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #fce4f3;
}

.verified-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #b8138c;
    background-color: #fef6fb;
    padding: 4px 8px;
    border-radius: 50px;
    vertical-align: middle;
    float:right;
    margin-left: 8px;
}

.goal-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #b8138c;
    background-color: #fce4f3;
    padding: 4px 12px;
    border-radius: 50px;
    margin-top: 5px;
}

/* Stile per i controlli dello slider */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    background-color: #e819b3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}
#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    opacity: 1;
}
#testimonialCarousel .carousel-control-prev { left: -40px; }
#testimonialCarousel .carousel-control-next { right: -40px; }



.btn-primary {
    background-color: #e819b3;
    border-color: #e819b3;
    color: white;
}
.btn-outline-primary {
    border-color: #c71585;
    color: #c71585;
}
.btn-outline-primary:hover,
.btn-primary:hover {
    background-color: #8d0669;
    border-color: #8d0669;
    color: white;
}
.btn {
    border-radius: 50px;
    font-weight: 700;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

#credenziali ul {
    list-style: none;
    padding-left: 0;
}
#credenziali ul li {
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
#credenziali ul li i {
    color: #e819b3;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}
.shadow-bottom-right {
    padding-right:0px;
    box-shadow: 20px 20px 28px -25px rgba(0, 0, 0, 0.8);
    border-bottom-right-radius: 40px;
}

/* --- [NUOVO] Stile per Pagina FAQ Dedicata --- */
.page-header {
    padding: 60px 0;
    background-color: var(--primary-ultralight);
    border-bottom: 1px solid var(--primary-light);
}

.faq-page .faq-search-wrapper {
    position: relative;
}

.faq-page .search-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #aaa;
}

.faq-page #faq-search-input {
    padding-left: 50px;
    border-radius: 50px;
    border-color: var(--primary-light);
}
.faq-page #faq-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--primary-light);
}

.faq-page .accordion-item {
    border: 1px solid var(--primary-light);
    border-radius: 15px !important;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px -5px rgba(0,0,0,0.05);
}

.faq-page .accordion-button {
    font-weight: 700;
    color: var(--heading-color);
    background-color: #fff;
    padding: 0.8rem 1.25rem 0.8rem 1.25rem;
    line-height: 1.8rem;
    border-top-left-radius: 0.8rem;
    border-bottom-left-radius: 0;
    border-left: 0px solid #e819b3;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
}
.accordion-item:first-of-type>.accordion-header .accordion-button.collapsed,
.faq-page .accordion-button.collapsed {
	border-radius: 0.8rem;
	border-left: 4px solid #e819b3;
	transition: all 0.3s ease-in-out;
}

.faq-page .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem var(--primary-light);
}

.faq-page .accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background-color: var(--primary-ultralight);
    box-shadow: inset 0 -1px 0 var(--primary-light);
}

.faq-page .accordion-body {
    padding: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.faq-page .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B8138C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.highlight {
    background-color: #FFF38A;
    color: #333;
    padding: 0.1em;
    border-radius: 3px;
}







.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pr-0,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto,
.my-auto {
  margin-top: auto !important;
}
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}
.row.row-same-height {
    display: flex;
    flex-wrap: wrap;
}
.carousel-inner {
    overflow: visible;
}
.cta-section {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.cc-window.cc-banner {
    padding: 1.1em 1.8em;
    width: 100%;
    -ms-flex-direction: row;
    flex-direction: row;
}
.navbar-brand .logo {
	max-width:250px;
}
 .display-8 {
     font-size: 8rem;
 }
 .font-weight-normal {
	font-weight: 400 !important;
}
 .font-weight-bold {
	font-weight: 500 !important;
 }
 .font-weight-bolder {
	font-weight: 700 !important;
}
.text-small {
	font-size: 85% !important;
}
.card-img-ebook {
	aspect-ratio: 16/9;
	object-fit: cover;
	object-position: top;
}
.card-ebook {
	transition: all 0.3s ease-in-out;
}
.card-ebook:hover{
    --tw-scale-x: 105%;
    --tw-scale-y: 105%;
    --tw-scale-z: 105%;
    scale: 105% 105%;
    transition: all 0.3s ease-in-out;  
    box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important; 
}
.card.card-ebook .card-body h4 {
    min-height: 3.8rem;
}
.card.card-ebook .card-body h2 {
	position: absolute;
    bottom: 6rem;
  	align-self: center;
}
.rounded-top {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}
.text-dark-warning,
.text-dark-warning:hover {
	color: #855c11;
}
.text-muted.text-warning {
	color:#f9e3a2 !important;
}
.row-ordine-recente:not(:last-child),
.row-ebooks-piu-venduti:not(:last-child) {
	border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}


.step-block { text-align: center; }
.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fce4f3; /* Colore base */
    color: var(--primary-dark);
    border: 3px solid #fce4f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}
.step-block.active .step-circle {
    background-color: var(--primary-color);
    border-color: var(--primary-dark);
    color: white;
    transform: scale(1.1);
}
.step-block.completed .step-circle {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}
.step-connector {
    flex-grow: 1;
    height: 4px;
    background-color: #fce4f3;
    transition: all 0.4s ease;
}
.step-connector.completed {
    background-color: var(--primary-dark);
}

  .tips-box {
            background: linear-gradient(135deg, var(--primary-ultralight), #ffffff);
            border: 1px solid var(--primary-light);
            border-radius: 15px;
            padding: 30px;
            margin: 0;/*30px 0;*/
        }

        .tips-box .icon {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .highlight-box {
            background-color: var(--primary-ultralight);
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }

 .feature-card {
            background-color: #ffffff;
            border: 1px solid #fce4f3;
            padding: 30px;
            border-radius: 15px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 0.5rem 12px -10px rgba(0, 0, 0, 0.15);
        }
        .card-ebook.feature-card {
    		border: 1px solid #e819b35e;
        }
        .card-ebook .card-footer {
        	border-top: 1px solid #e819b35e;
        	
        }
		.feature-card .card-header {
			height:200px;
		}
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 27px rgba(232, 25, 179, 0.15) !important;
            border-color: #e819b3;
        }

        .feature-card .icon {
            font-size: 2.5rem;
            color: #e819b3;
            margin-bottom: 20px;
            text-align: center;
        }

        .measurement-card {
            background-color: #ffffff;
            border: 1px solid var(--primary-light);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px -5px rgba(0,0,0,0.05);
        }

        .measurement-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(232, 25, 179, 0.1);
            border-color: var(--primary-color);
        }
		.measurement-card .come-fare {
			border-left: 4px solid #e819b3;
    		margin-top: auto;
    		margin-bottom: auto;
    	}
        .measurement-number {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
.questionario hr {
	border-style: dotted;
}
.questionario.feature-card.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}
 .questionario.feature-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(232, 25, 179, 0.1) !important;
     border-color: #e819b3;
 }
.radio-child-checked {
        border: 1px solid #e819b33d;
    border-radius: 20px;
    padding-left: 3rem;
    font-weight: 500;
    vertical-align: middle;
    padding-right: 1.5rem;
    color: #e819b3;
    padding-top: 5px;
    background-color: #fef6fb;
    box-shadow: 0px 0px 8px -1px rgb(248 66 230 / 44%);
}
.radio-child-checked .form-check-input:checked {
    background-color: #e819b333;
    border-color: #e819b3;
    border-width: 4px;
    margin-top: 0.4rem;
}
.radio-child-checked .form-check-input:focus {
    border-color: #e819b3;
    box-shadow: 0 0 0 .25rem rgb(232 25 179 / 14%);
}
.radio-child-checked .form-check-label{
	vertical-align: text-bottom;
}
.radio-group .form-check-input {
    cursor: pointer;
   	margin-top:50%;
    border: 2px solid #aaa;
}
.radio-child-checked {
  box-shadow: 0px 0px 8px -1px rgb(248 66 230 / 44%);
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.radio-child-checked:hover {
  box-shadow: 0px 0px 12px 2px rgb(248 66 230 / 60%);
  transform: scale(1.02);
}
.radio-child-checked {
  animation: fadeIn 0.4s ease;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
}

/* --- Stile Pulsante Google --- */
.btn-google {
    background-color: #ffffff;
    color: #444;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.btn-google:hover {
    background-color: #f8f9fa;
    border-color: #cdd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: #111;
}

.btn-google .bi-google {
    vertical-align: -2px;
}


.justify-self-end {
	justify-self: end;
}


/* --- [NUOVA] Sezione Garanzie --- */
#garanzie {
    background-color: var(--primary-ultralight);
}

.credential-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.2rem;
    text-align: left;
}
.credential-item:last-child {
    margin-bottom: 0;
}

.credential-item .icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    box-shadow: 0 10px 20px rgba(232, 25, 179, 0.2);
    transition: all 0.3s ease;
}

.credential-item:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.credential-item .content h5 {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.credential-item .content p {
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 1.7;
}
    /* Stili per la sidebar e i suoi widget */
    .sidebar {
        position: sticky;
        top: 40px; /* Distanza dal top quando la pagina scorre */
    }
    .sidebar-widget {
        background-color: var(--primary-ultralight);
        border: 1px solid var(--primary-light);
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 2rem;
    }
    .widget-title {
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--primary-color);
        display: inline-block;
    }
    
    /* Stili per la lista degli articoli recenti */
    .recent-post-item a {
    	display: inline-block;
        padding: 12px 0;
        text-decoration: none;
        border-bottom: 1px solid var(--primary-light);
        transition: background-color 0.3s ease;
    }
    .recent-post-item:last-child a {
        border-bottom: none;
    }
    .recent-post-item a:hover {
        background-color: rgba(232, 25, 179, 0.1);
    }
    .recent-post-item .post-title {
        display: block;
        font-weight: 600;
        color: var(--text-color);
        margin-bottom: 4px;
    }
    .recent-post-item .post-date {
        font-size: 0.85rem;
        color: #888;
    }
    .recent-post-item {
	    align-items: start;
	    align-content: center;
	    display: flex;
	}
	.recent-post-item img {
		max-height: 60px;
	    width: 25%;
	    display: inline-block;
	    object-fit: cover;
	    margin-right: 10px;
    	margin-top: 17px;
	}

    /* Stili per i link di condivisione social */
    .social-share-links {
        display: flex;
        gap: 15px;
    }
    .social-share-links .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        color: #fff;
        text-decoration: none;
        font-size: 1.1rem;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .social-share-links .social-icon:hover {
        transform: scale(1.1);
        opacity: 0.9;
    }
    .social-icon.facebook { background-color: #1877F2; }
    .social-icon.twitter { background-color: #1DA1F2; }
    .social-icon.linkedin { background-color: #0A66C2; }
    .social-icon.whatsapp { background-color: #25D366; }
    
    /* Stili per il contenuto dell'articolo (ripresi e adattati dalla versione precedente) */
    .article-content h2, .article-content h3, .article-content h4 { margin-top: 2.5rem; margin-bottom: 1.2rem; }
    .article-content p, .article-content li { line-height: 1.9; font-size: 1.1rem; }
    .article-content a { color: var(--primary-color); text-decoration: underline; }
    .article-content blockquote { border-left: 5px solid var(--primary-color); padding: 1rem 1.5rem; font-style: italic; background-color: var(--primary-ultralight); border-radius: 0 10px 10px 0; margin: 2rem 0; }
    .article-content img { max-width: 100%; height: auto; border-radius: 15px; margin: 1rem 0; }

.required {
	color: red;
}
.form-group.is-invalid label.form-label,
.form-group.has-danger label.form-label
.form-group.has-error label.form-label {
    color: #dc3545;
    font-weight: 600;
}
.ribbon-wrapper {
    width: 106px;
    height: 108px;
    overflow: hidden;
    position: absolute;
    top: -6px;
    right: -6px;
    z-index: 5;
  /*filter:saturate(0.85);*/
}

.ribbon {
font-size: 0.75rem;
    font-weight: 600;
    word-break: break-all;
    word-wrap: break-word !important;
    line-height: 11px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: relative;
    padding: 6px 0;
    align-content: center;
    vertical-align: middle;
    left: -11px;
    top: 26px;
    width: 150px;
    height: 2rem;
    background-color: #bf51a9;
    color: #fff;
    box-shadow: 9px 3px 9px -2px rgb(136 15 110 / 80%);
    text-wrap: auto;;
}

.ribbon:before, 
.ribbon:after {
  content: "";
  border-top: 4px solid #510d3f;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  bottom: -4px; }

.ribbon:before {
  left: 0; }

.ribbon:after {
  right: 0; 
 }
.ribbon span {
    word-break: break-word;
    width: 100px;
    display: inline-flex;
    justify-content: center;
}
.card-image {
	max-height: 313px;
    overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.text-dark-info {
    color: #0a5cd1;
}


.text-primary {
    color: #e819b3 !important;
}
.text-dark-primary {
	color: #8f5b82 !important;
}
.card-blog .card-footer:last-child {
    border-radius: 15px;
}


/* Adattamento per schermi piccoli */
@media (max-width: 992px) {
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        display: none; /* Nasconde le frecce su mobile per non occupare spazio */
    }
    .testimonial-card-v2 {
        padding: 30px;
    }
    .lead {
    	font-size: 1rem;
	}
	.hero-icon-features li {
		margin-left: 20px;
	}
}

@media (max-width: 768px) {
    .measurement-card {
        padding: 20px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .timeline-v2 {
        margin-left: 15px;
    }
    .timeline-v2-item {
        padding: 25px 0 20px 25px !important;
    }
    .verified-badge {
        float: unset;
        display: block;
        margin-top: 4px;
        margin-left: 0;
    }
    .navbar .navbar-nav .nav-item {
        border-bottom: 1px solid #dee2e6 !important;
    }
    .navbar .navbar-nav .nav-item:first-child {
	    border-top: 1px solid #dee2e6;
	    margin-top: 15px;
	}
	.timeline-v2-item .step {
		font-size: 1.5rem;
	}
	.timeline-v2-item::before {
		top: 36px;
		left: -15px;
    	width: 25px;
   		height: 25px;
	}
}

/* QUI INIZIANO LE CLASSI DI TIPO SM */
@media (min-width: 576px) {

}


/* QUI INIZIANO LE CLASSI DI TIPO MD */
@media (min-width: 768px) {

}

/* QUI INIZIANO LE CLASSI DI TIPO LG */
@media (min-width: 992px) {
     .navbar-expand-lg .navbar-nav .nav-item {
         display:flex;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
         align-self: anchor-center;
    }
    .section-subtitle {
    	max-width: 700px;
    }
    .mt-lg-0,
	.my-lg-0 {
	  margin-top: 0 !important;
	}
	.mr-lg-0,
	.mx-lg-0 {
	  margin-right: 0 !important;
	}
	.mb-lg-0,
	.my-lg-0 {
	  margin-bottom: 0 !important;
	}
	.ml-lg-0,
	.mx-lg-0 {
	  margin-left: 0 !important;
	}
	.m-lg-1 {
	  margin: 0.25rem !important;
	}
	.mt-lg-1,
	.my-lg-1 {
	  margin-top: 0.25rem !important;
	}
	.mr-lg-1,
	.mx-lg-1 {
	  margin-right: 0.25rem !important;
	}
	.mb-lg-1,
	.my-lg-1 {
	  margin-bottom: 0.25rem !important;
	}
	.ml-lg-1,
	.mx-lg-1 {
	  margin-left: 0.25rem !important;
	}
	.m-lg-2 {
	  margin: 0.5rem !important;
	}
	.mt-lg-2,
	.my-lg-2 {
	  margin-top: 0.5rem !important;
	}
	.mr-lg-2,
	.mx-lg-2 {
	  margin-right: 0.5rem !important;
	}
	.mb-lg-2,
	.my-lg-2 {
	  margin-bottom: 0.5rem !important;
	}
	.ml-lg-2,
	.mx-lg-2 {
	  margin-left: 0.5rem !important;
	}
	.m-lg-3 {
	  margin: 1rem !important;
	}
	.mt-lg-3,
	.my-lg-3 {
	  margin-top: 1rem !important;
	}
	.mr-lg-3,
	.mx-lg-3 {
	  margin-right: 1rem !important;
	}
	.mb-lg-3,
	.my-lg-3 {
	  margin-bottom: 1rem !important;
	}
	.ml-lg-3,
	.mx-lg-3 {
	  margin-left: 1rem !important;
	}
	.m-lg-4 {
	  margin: 1.5rem !important;
	}
	.mt-lg-4,
	.my-lg-4 {
	  margin-top: 1.5rem !important;
	}
	.mr-lg-4,
	.mx-lg-4 {
	  margin-right: 1.5rem !important;
	}
	.mb-lg-4,
	.my-lg-4 {
	  margin-bottom: 1.5rem !important;
	}
	.ml-lg-4,
	.mx-lg-4 {
	  margin-left: 1.5rem !important;
	}
	.m-lg-5 {
	  margin: 3rem !important;
	}
	.mt-lg-5,
	.my-lg-5 {
	  margin-top: 3rem !important;
	}
	.mr-lg-5,
	.mx-lg-5 {
	  margin-right: 3rem !important;
	}
	.mb-lg-5,
	.my-lg-5 {
	  margin-bottom: 3rem !important;
	}
	.ml-lg-5,
	.mx-lg-5 {
	  margin-left: 3rem !important;
	}
	.p-lg-0 {
	  padding: 0 !important;
	}
	.pt-lg-0,
	.py-lg-0 {
	  padding-top: 0 !important;
	}
	.pr-lg-0,
	.px-lg-0 {
	  padding-right: 0 !important;
	}
	.pb-lg-0,
	.py-lg-0 {
	  padding-bottom: 0 !important;
	}
	.pl-lg-0,
	.px-lg-0 {
	  padding-left: 0 !important;
	}
	.p-lg-1 {
	  padding: 0.25rem !important;
	}
	.pt-lg-1,
	.py-lg-1 {
	  padding-top: 0.25rem !important;
	}
	.pr-lg-1,
	.px-lg-1 {
	  padding-right: 0.25rem !important;
	}
	.pb-lg-1,
	.py-lg-1 {
	  padding-bottom: 0.25rem !important;
	}
	.pl-lg-1,
	.px-lg-1 {
	  padding-left: 0.25rem !important;
	}
	.p-lg-2 {
	  padding: 0.5rem !important;
	}
	.pt-lg-2,
	.py-lg-2 {
	  padding-top: 0.5rem !important;
	}
	.pr-lg-2,
	.px-lg-2 {
	  padding-right: 0.5rem !important;
	}
	.pb-lg-2,
	.py-lg-2 {
	  padding-bottom: 0.5rem !important;
	}
	.pl-lg-2,
	.px-lg-2 {
	  padding-left: 0.5rem !important;
	}
	.p-lg-3 {
	  padding: 1rem !important;
	}
	.pt-lg-3,
	.py-lg-3 {
	  padding-top: 1rem !important;
	}
	.pr-lg-3,
	.px-lg-3 {
	  padding-right: 1rem !important;
	}
	.pb-lg-3,
	.py-lg-3 {
	  padding-bottom: 1rem !important;
	}
	.pl-lg-3,
	.px-lg-3 {
	  padding-left: 1rem !important;
	}
	.p-lg-4 {
	  padding: 1.5rem !important;
	}
	.pt-lg-4,
	.py-lg-4 {
	  padding-top: 1.5rem !important;
	}
	.pr-lg-4,
	.px-lg-4 {
	  padding-right: 1.5rem !important;
	}
	.pb-lg-4,
	.py-lg-4 {
	  padding-bottom: 1.5rem !important;
	}
	.pl-lg-4,
	.px-lg-4 {
	  padding-left: 1.5rem !important;
	}
	.p-lg-5 {
	  padding: 3rem !important;
	}
	.pt-lg-5,
	.py-lg-5 {
	  padding-top: 3rem !important;
	}
	.pr-lg-5,
	.px-lg-5 {
	  padding-right: 3rem !important;
	}
	.pb-lg-5,
	.py-lg-5 {
	  padding-bottom: 3rem !important;
	}
	.pl-lg-5,
	.px-lg-5 {
	  padding-left: 3rem !important;
	}
}

/* QUI INIZIANO LE CLASSI DI TIPO XL */
@media (min-width: 1200px) {
    .display-3 {
        font-size: 3.2rem !important;
    }
    .display-4 {
    	font-size: 3rem !important;
    }
}

/* QUI INIZIANO LE CLASSI DI TIPO XXL */
@media (min-width: 1400px) {
  
  
}