/* Stile per la sezione combinata di coaching arricchita */
.initially-hidden {
    visibility: hidden;
    opacity: 0;
}

.coaching-detail-section {
    /*padding: 50px 0;*/
    background-color: #fff;
    /*background-image: url('../images/lotus.png'), url('../images/sheet.png'); *//* Sostituisci con l'immagine di pattern che stai utilizzando */
    background-repeat: no-repeat, no-repeat;
    background-position: -100px top, right bottom;
}

.section-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.section-title {
    font-size: 40px;
    font-family: "Cormorant", serif;
    font-weight: 700;
    color: #556b2f;
    margin-bottom: 30px;
    text-align: left;
}

/* Colonne estese */
.coaching-columns.expanded {
    display: flex;
    gap: 30px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coaching-column {
    flex: 1;
    padding: 0;
    position: relative;
}

.coaching-column.extended {
    width: calc(50% - 15px);
    padding: 50px 10px;
    margin: 10px;
    border-radius: 3px;
    color: var(--color-gray);
    background-color: var(--color-white);
    background-image: url('../images/bg-block-top.png'), url('../images/bg-block-bottom.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coaching-column.left-column.extended {
    border-right: 1px solid #f0f0f0;
}

.coaching-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.column-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: inherit;
}

.image-container {
    margin: 20px 0;
    text-align: center;
}

.column-image {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.column-image:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.coaching-text {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
    color: #555;
    font-family: "Poppins", sans-serif;
}

.coaching-text strong {
    background-color: #f0f7f1;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: bold;
}

.intro-big {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    border-left: 4px solid #556b2f;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
}

.column-title {
    color: #333;
    font-family: "Cormorant", serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Stile per emoji e punti elenco */
.emoji {
    font-size: 1.2em;
    margin-right: 5px;
    display: inline-block;
}

.point-list {
    padding-left: 15px;
}

/* Benefit card estese */
.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon svg {
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-size: 1.4rem;
    color: #0c6b1d;
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-description {
    color: #666;
    line-height: 1.5;
    text-align: left;
}

.benefit-description.extended {
    margin-top: 15px;
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Stile per il mini-articolo notebook */
.notebook-article {
    background-color: #f9f5e9;
    border: 1px solid #e0d9c3;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-image:
            linear-gradient(to right, #f0e8d3 1px, transparent 1px),
            linear-gradient(to bottom, #e8e0c9 1px, transparent 1px);
    background-size: 25px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notebook-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.notebook-article:before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 1px;
    background-color: #e76f51;
    opacity: 0.3;
}

.notebook-title {
    background-color: #0c6b1d;
    color: white;
    font-family: "Cormorant", serif;
    font-size: 24px;
    padding: 10px 20px;
    display: inline-block;
    margin-top: -45px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
}

.notebook-subtitle {
    color: #0c6b1d;
    font-family: "Cormorant", serif;
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 15px;
    border-bottom: 2px solid #0c6b1d;
    padding-bottom: 8px;
    display: inline-block;
}

.highlight-box {
    background-color: rgba(12, 107, 29, 0.1);
    border-left: 4px solid #0c6b1d;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

/* Stile per la sezione testimonianze */
.testimonial-notebook {
    margin: 20px 0;
}

.testimonial-name {
    font-weight: bold;
    color: #0c6b1d;
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 20px;
}

.testimonial-list {
    list-style-type: none;
    padding-left: 10px;
    margin-bottom: 20px;
}

.testimonial-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px;
}

.testimonial-list .emoji {
    position: absolute;
    left: 0;
    top: 2px;
}

/* CTA nel notebook */
.cta-notebook {
    background-color: rgba(12, 107, 29, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.notebook-btn {
    margin-top: 15px;
    font-size: 16px;
    padding: 12px 25px;
}

/* Method Overview */
.method-overview {
    background-color: #f4f9f5;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.overview-title {
    color: #0c6b1d;
    font-family: "Cormorant", serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.overview-text {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #0c6b1d;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #094b15;
    transform: scale(1.05);
    color: white;
}

/* Tags */
.tags-links.expanded {
    display: block;
    margin-top: 40px;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.tags-links.expanded a {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    color: #0c6b1d;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 3px 10px;
    background-color: #f0f7f1;
    border-radius: 15px;
}

.tags-links.expanded a:hover {
    color: #fff;
    background-color: #0c6b1d;
    text-decoration: none;
}

/* Animazioni */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated {
    animation: fadeIn 0.8s ease forwards;
}

.cta-button.pulse {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive */
@media all and (max-width: 992px) {
    .coaching-columns.expanded {
        flex-direction: column;
    }

    .coaching-column.extended {
        width: calc(100% - 20px);
    }

    .coaching-column.left-column.extended {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 20px;
    }

    .column-content {
        padding: 20px;
    }

    .coaching-detail-section .section-title {
        font-size: 32px;
        text-align: center;
    }

    .notebook-title {
        font-size: 22px;
        margin-top: -40px;
    }
}

@media (max-width: 576px) {
    .coaching-detail-section {
        padding: 30px 0;
    }

    .coaching-detail-section .section-title {
        font-size: 26px;
    }

    .coaching-column.extended,
    .benefit-card {
        padding: 15px;
    }

    .column-image {
        max-width: 80%;
    }

    .notebook-article {
        padding: 20px 15px;
    }

    .notebook-title {
        font-size: 20px;
        margin-top: -35px;
        padding: 8px 15px;
    }

    .benefit-description.extended {
        display: none;
    }
}

/*
.initially-hidden {
    visibility: hidden;
    opacity: 0;
}

.coaching-detail-section {
    !*padding: 50px 0;*!
    background-color: #fff;
    !*background-image: url('../images/lotus.png'), url('../images/sheet.png'); *!!* Sostituisci con l'immagine di pattern che stai utilizzando *!
    background-repeat: no-repeat, no-repeat;
    background-position: -100px top, right bottom;
}

.section-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}


.section-title {
    font-size: 40px;
    font-family: "Cormorant", serif;
    font-weight: 700;
    color: #556b2f;
    margin-bottom: 30px;
    text-align: left;
}

.coaching-columns {
    display: flex;
    gap: 30px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.9); !* Sfondo bianco semi-trasparente *!
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coaching-column {
    flex: 1;
    padding: 0;
    position: relative;
}

.coaching-column.left-column {
    border-right: 1px solid #f0f0f0;
    width: calc(25% - 20px);
    padding: 50px 10px;
    margin: 10px;
    border-radius: 3px;
    color: var(--color-gray);
    background-color: var(--color-white);
    background-image: url('../images/bg-block-top.png'), url('../images/bg-block-bottom.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coaching-column.right-column {
    border-right: 1px solid #f0f0f0;
    width: calc(25% - 20px);
    padding: 50px 10px;
    margin: 10px;
    border-radius: 3px;
    color: var(--color-gray);
    background-color: var(--color-white);
    background-image: url('../images/bg-block-top.png'), url('../images/bg-block-bottom.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coaching-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.column-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.85); !* Sfondo bianco semi-trasparente *!
    border-radius: inherit;
}

.image-container {
    margin: 20px 0;
    text-align: center;
}

.column-image {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.coaching-text {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
    color: #555;
    font-family: "Poppins", sans-serif;
}

.intro-big {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    border-left: 4px solid #556b2f;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
}

.bottom-quote {
    margin-top: auto;
}

.column-title {
    color: #333;
    font-family: "Cormorant", serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}

.benefit-keyword {
    font-weight: 700;
    color: #556b2f;
}

@media all and (max-width: 992px) {
    .coaching-columns {
        flex-direction: column;
    }

    .coaching-column.left-column {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 10px 10px 0 0;
    }

    .coaching-column.right-column {
        border-radius: 0 0 10px 10px;
    }

    .coaching-detail-section .section-title {
        font-size: 35px;
        text-align: center;
        text-align: center;
        !*color: #0c6b1d;*!
        margin-bottom: 40px;
        font-size: 36px;
        font-weight: 500;
        position: relative;
    }

    .coaching-detail-section .section-title:after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background-color: #0c6b1d;
        margin: 15px auto 0;
    }

    .bottom-quote {
        margin-top: 25px;
    }
}

!*Benefit card*!
.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.4rem;
    color: #0c6b1d;
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-description {
    color: #666;
    line-height: 1.5;
}


!*! sezione in forma senza dieta*!
!* CSS specifico per la sezione In Forma Senza Dieta *!
!* Utilizziamo un prefisso 'diet-' per evitare conflitti *!

.diet-coaching-section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    background-color: #fff;
}

.diet-coaching-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.diet-coaching-section.initially-hidden {
    opacity: 0;
}

.diet-coaching-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.diet-coaching-section .section-title {
    text-align: center;
    color: #0c6b1d;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 500;
    position: relative;
}

.diet-coaching-section .section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #0c6b1d;
    margin: 15px auto 0;
}

.diet-coaching-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.diet-coaching-column {
    flex: 1;
    min-width: 300px;
}

.diet-left-column {
    background-color: #f9f9f9;
    border-radius: 10px;
    position: relative;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diet-left-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.diet-coaching-text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #444;
}

.diet-image-container {
    margin: 30px 0;
    text-align: center;
}

.diet-column-image {
    max-width: 260px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.diet-column-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.diet-right-column .diet-column-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.diet-benefit-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
}

.diet-benefit-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.diet-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.diet-benefit-icon {
    margin-bottom: 15px;
}

.diet-benefit-icon svg {
    transition: transform 0.3s ease;
}

.diet-benefit-card:hover .diet-benefit-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.diet-benefit-title {
    color: #0c6b1d;
    margin-bottom: 10px;
    font-size: 22px;
}

.diet-benefit-description {
    color: #666;
    line-height: 1.5;
}

.diet-tags-links {
    display: block;
    margin-top: 40px;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.diet-tags-links a {
    display: inline-block;
    margin-right: 10px;
    color: #0c6b1d;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 3px 10px;
    background-color: #f0f7f1;
    border-radius: 15px;
}

.diet-tags-links a:hover {
    color: #fff;
    background-color: #0c6b1d;
    text-decoration: none;
}

.diet-emoji {
    font-size: 1.2em;
    margin-right: 5px;
}

.diet-coaching-text strong {
    background-color: #f0f7f1;
    padding: 2px 5px;
    border-radius: 4px;
}

.diet-testimonial-box {
    background-color: #f0f7f1;
    border-left: 4px solid #0c6b1d;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.diet-cta-button {
    display: inline-block;
    background-color: #0c6b1d;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.diet-cta-button:hover {
    background-color: #094b15;
    transform: scale(1.05);
    color: white;
}

!* Animazioni *!
@keyframes dietFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.diet-coaching-section .animated {
    animation: dietFadeIn 0.8s ease forwards;
}

.diet-cta-button.pulse {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

!* Responsive *!
@media (max-width: 992px) {
    .diet-coaching-columns {
        flex-direction: column;
    }

    .diet-coaching-column {
        min-width: 100%;
    }

    .diet-coaching-section .section-title {
        font-size: 30px;
    }

    .diet-benefit-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .diet-coaching-section {
        padding: 50px 0;
    }

    .diet-coaching-section .section-title {
        font-size: 26px;
    }

    .diet-left-column, .diet-benefit-card {
        padding: 20px;
    }

    .diet-column-image {
        max-width: 80%;
    }
}*/
