/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VARIABILI COLORI */
:root {

    --white: #ffffff;

    --cream: #F4F0E8;
    --ivory: #EFE8DC;

    --black: #050505;
    --dark: #111111;
    --charcoal: #2E2E2E;

    --gold: #e67607;
    --gold-soft: #e09509;

    --aqua: #5DB7BE;
    --aqua-soft: #CBEDEF;

    --silverpoint: #7F786E;
    --silverpoint-light: #9A9287;
    --silverpoint-soft: #B3ACA2;

    --title-light: #E8E2D8;
    --title-silverpoint: #6B645C;
    --title-silverpoint-dark: #5F5952;
    --title-seppia: #7f480a;
   
    /* MENU */

    --menu-silver: #D7D0C6;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--title-seppia);
    min-height: 100vh;
}


/* HEADER */

header {

    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;

    width: 100%;

    padding: 30px 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background:
        linear-gradient(
            to bottom,
            rgba(244,240,232,0.03),
            rgba(255,255,255,0.01)
        );

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    border-bottom: 1px solid rgba(200,169,107,0.08);

    transition:
        background 0.45s ease,
        backdrop-filter 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

/* HEADER HOVER */

header:hover {

    background:
        linear-gradient(
            to bottom,
            rgba(244,240,232,0.12),
            rgba(255,255,255,0.05)
        );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(200,169,107,0.20);

    box-shadow:
        0 8px 30px rgba(0,0,0,0.08);
}

/* LOGO */

.logo img {

    height: 120px;
    width: auto;

    display: block;

    opacity: 0.78;

    filter:
        brightness(1.08)
        contrast(1.02);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.logo img:hover {

    opacity: 1;

    transform: scale(1.03);
}

header:hover .logo img {

    opacity: 0.95;
}

/* NAV */

nav a {

    color: var(--title-seppia);

    text-decoration: none;

    margin-left: 34px;

    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;

    text-shadow:
        0 2px 8px rgba(0,0,0,0.75);

    transition:
        color 0.35s ease,
        transform 0.35s ease,
        text-shadow 0.35s ease;
}
/* MENU SATINATO */

header:hover nav a {

    text-shadow:
        0 2px 8px rgba(0,0,0,0.75),
        0 0 10px rgba(255,255,255,0.12);
}

/* HOVER E PAGINA ATTIVA */

nav a:hover,
nav a.active {

    color: var(--gold);

    text-shadow:
        0 0 12px rgba(200,169,107,0.45);

    transform: translateY(-2px);
}

nav a.active {

    border-bottom: 1px solid var(--gold);

    padding-bottom: 10px;
}



/* HOME PAGE */


 .home-page {

    min-height: 100vh;

    position: relative;

    overflow: hidden;

    background-color: #e8d3ad;
}
/* =====================================
   CHI SONO
===================================== */
.chi-sono-hero {

    min-height: auto;

    padding: 70px 20px 40px;

}
/* FILOSOFIA PAGE */





/* COME LAVORO PAGE */

.come-lavoro-page {
    min-height: 100vh;

    position: relative;
    overflow-x: hidden;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.10)
        ),
        url("come-lavoro-bg.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.come-lavoro-page::before {
    content: "";
    position: fixed;
    inset: 0;

    background:
        radial-gradient(circle at 25% 30%, rgba(255,255,255,0.12), transparent 35%),
        radial-gradient(circle at 75% 70%, rgba(93,183,190,0.10), transparent 40%);

    z-index: 1;
    pointer-events: none;
}

/* HERO HOME */

.hero-lux {
    min-height: 100vh;

    padding: 240px 20px 80px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 6;
}

.hero-top-text {
    color: var(--title-silverpoint);

    font-size: 0.95rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 500;

    margin-bottom:60px;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.35);
}

.hero-lux h1 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 82px;
    font-weight: 300;
    letter-spacing: 4px;

    color: #f2e3c9;

    text-shadow:
        0 2px 14px rgba(0,0,0,0.45),
        0 0 24px rgba(200,169,107,0.14);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    margin: 28px 0;
}

.hero-divider span {
    width: 130px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cream),
            var(--gold),
            transparent
        );
}

.divider-symbol {
    color: var(--gold);
    font-size: 22px;
}

/* DESCRIZIONE HOME */

.hero-description {
    color: var(--title-seppia);

    font-size: 18px;
    font-weight: 500;

    line-height: 2;
    letter-spacing: 1.5px;

    max-width: 850px;

    margin: 0 auto;

    padding: 18px 35px;

   background:
    linear-gradient(
        135deg,
        rgba(244,240,232,0.12),
        rgba(239,232,220,0.08),
        rgba(227,218,198,0.05)
    );

    backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);


    border: 1px solid rgba(140,110,70,0.16);
    border-radius: 12px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.12);

    text-shadow:
        0 1px 2px rgba(255,255,255,0.35);
transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    -webkit-backdrop-filter 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;

    }
.hero-description:hover {

    background:
        linear-gradient(
            135deg,
            rgba(244,240,232,0.40),
            rgba(239,232,220,0.30),
            rgba(227,218,198,0.20)
        );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-color: rgba(230,118,7,0.25);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.45);

    transform: translateY(-2px);
}


/* BUTTON */

.hero-button {
    display: inline-block;

    margin-top: 42px;
    padding: 17px 48px;

    border: 1px solid rgba(200,169,107,0.45);

    background:
        linear-gradient(
            135deg,
            rgba(244,240,232,0.22),
            rgba(93,183,190,0.10)
        );

    color: var(--title-seppia);

    text-decoration: none;

    font-size: 13px;
    letter-spacing: 2px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.hero-button:hover {
    transform: translateY(-3px);

    background:
        linear-gradient(
            135deg,
            rgba(244,240,232,0.42),
            rgba(93,183,190,0.18)
        );

    border-color: rgba(200,169,107,0.70);

    box-shadow:
        0 0 25px rgba(93,183,190,0.14),
        0 0 20px rgba(200,169,107,0.16);
}

/* SERVICES */

.services-section {
    position: relative;
    z-index: 5;

    padding: 30px 20px 70px;
}

.services-container {

    max-width: 1100px;

    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    background: transparent;

    border: none;

    box-shadow: none;

    padding: 10px;
}

.service-card {

    text-align: center;

    padding: 42px 36px;

    background:
        linear-gradient(
        135deg,
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.05),
        rgba(244,240,232,0.03)
    );

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.30);

    border-radius: 22px;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.45);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease;

        opacity: 0.78;

    }


.service-card:hover {

    transform: translateY(-8px);

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.92),
        rgba(244,240,232,0.85),
        rgba(255,248,235,0.78)
    );
    border-color: rgba(230,118,7,0.35);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.55),
        0 0 30px rgba(230,118,7,0.12);

        opacity: 1;

    }




.service-photo {
    width: 95px;
    height: 95px;

    margin: 0 auto 24px;

    border-radius: 50%;
    overflow: hidden;

    border: 2px solid rgba(244,240,232,0.55);

    box-shadow:
        0 0 14px rgba(93,183,190,0.12),
        0 0 12px rgba(200,169,107,0.12);

    transition: 0.35s ease;
}

.service-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.service-card:hover .service-photo {
    border-color: var(--gold);

    box-shadow:
        0 0 25px rgba(93,183,190,0.22),
        0 0 18px rgba(200,169,107,0.18);
}

.service-card:hover .service-photo img {
    transform: scale(1.08);
}

/* TESTI SCHEDE */
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 31px;
    font-weight: 300;
    letter-spacing: 3px;

    color: #4a3420;

    text-transform: uppercase;

    transition:
        color 0.35s ease,
        text-shadow 0.35s ease;
}
.service-card:hover h3 {

    color: var(--gold);

    text-shadow:
        0 0 10px rgba(230,118,7,0.35),
        0 0 20px rgba(230,118,7,0.20);
}
.card-line {
    width: 48px;
    height: 1px;

    margin: 22px auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cream),
            var(--gold),
            transparent
        );

    transition: 0.35s ease;
}

.service-card:hover .card-line {

    width: 90px;

    box-shadow:
        0 0 10px rgba(230,118,7,0.35);
}


.service-card p {
    color: #5f5952;
    font-size: 15px;
    line-height: 1.8;
}

/* QUOTE */

.quote-section {
    position: relative;
    z-index: 5;

    text-align: center;

    padding: 20px 20px 55px;
}

.quote-mark {
    color: var(--gold);

    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    line-height: 1;
}

.quote-text {
    display: inline-block;

    max-width: 950px;

    padding: 24px 38px;

    background: rgba(244,240,232,0.08);

    
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    font-family: 'Cormorant Garamond', serif;

    color: #4a3420;

    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;

    text-shadow:
        0 3px 12px rgba(0,0,0,0.85);
}

.quote-text:hover{

    background: rgba(244,240,232,0.28);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: .4s ease;
}

/* PAGE HERO */

.page-hero-lux {
    position: relative;
    z-index: 5;

    width: 100%;
    min-height: 70vh;

    padding: 190px 20px 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    overflow: hidden;
}

.page-hero-lux h1 {
    position: relative;
    z-index: 2;

    font-family: 'Cormorant Garamond', serif;

    font-size: 82px;
    font-weight: 300;
    letter-spacing: 4px;

    color: var(--title-silverpoint-dark);

    text-shadow:
        0 2px 12px rgba(255,255,255,0.25),
        0 2px 14px rgba(0,0,0,0.25);
}

.page-hero-lux p {
    position: relative;
    z-index: 2;

    margin-top: 22px;

    max-width: 760px;

    color: var(--title-seppia);

    font-size: 18px;
    line-height: 1.8;
}

/* CONTENITORE PAGINE */

.about-container {
    position: relative;
    z-index: 5;

    max-width: 820px;

    margin: auto;

    padding: 110px 20px;
}

/* FOTO ALAN */

.profile-banner {
    display: flex;
    justify-content: center;

    margin-bottom: 80px;

    position: relative;
    z-index: 5;
}

.profile-banner img {

    width: 75vw;
    max-width: 900px;

    height: 500px;

    object-fit: cover;
    object-position: center top;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.35),
        0 0 40px rgba(200,169,107,0.18);

    transition: 0.4s ease;
}

.profile-banner img:hover {

    transform: scale(1.01);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.40),
        0 0 50px rgba(200,169,107,0.25);
}

/* SCHEDE GENERALI */

.about-block {

    position: relative;

    max-width: 760px;
    margin-left: auto;
    margin-right: auto;

    margin-bottom: 70px;
    padding: 42px;

    background:
        linear-gradient(
            135deg,
            rgba(244,240,232,0.04),
            rgba(255,255,255,0.02)
        );

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    border: 1px solid rgba(200,169,107,0.08);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.06);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        backdrop-filter 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.about-block:hover {

    transform: translateY(-5px);

    background:
        linear-gradient(
            135deg,
            rgba(244,240,232,0.18),
            rgba(255,255,255,0.08)
        );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-color: rgba(200,169,107,0.22);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12),
        inset 0 0 20px rgba(255,255,255,0.08);
}

/* TITOLI */

.about-block h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 58px;
    font-weight: 300;

    color: var(--title-silverpoint-dark);

    margin-bottom: 22px;
    padding-bottom: 12px;

    border-bottom: 1px solid rgba(200,169,107,0.18);

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        text-shadow 0.35s ease;
}

.about-block:hover h2 {

    color: var(--gold);

    border-bottom-color: rgba(200,169,107,0.45);

    text-shadow:
        0 0 12px rgba(200,169,107,0.35);
}

.about-block h3 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 30px;
    font-weight: 300;

    color: var(--title-seppia);

    margin-bottom: 18px;
}

/* TESTI */

.about-block p {

    color: var(--title-seppia);

    font-size: 22px;
    line-height: 2.1;

    margin-bottom: 18px;

    transition:
        color 0.35s ease,
        text-shadow 0.35s ease;
}

.about-block:hover p {

    color: var(--title-seppia);

    text-shadow:
        0 1px 2px rgba(255,255,255,0.25);
}
.about-block ul {
    margin-left: 22px;
    margin-bottom: 18px;
}

.about-block li {
    color: var(--title-seppia);
    font-size: 22px;
    line-height: 2.1;
    margin-bottom: 10px;
}

/* FILOSOFIA SYMBOL */

.filosofia-symbol {
    position: relative;
    z-index: 5;

    text-align: center;

    margin-top: 90px;
    margin-bottom: 70px;
}

.filosofia-symbol img {
    width: 100%;
    max-width: 340px;

    opacity: 0.58;

    filter:
        brightness(1.08)
        contrast(0.92);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        filter 0.4s ease;
}

.filosofia-symbol img:hover {
    opacity: 0.78;

    transform: scale(1.02);

    filter:
        brightness(1.12)
        contrast(0.98);
}

/* RESPONSIVE */

@media (max-width: 900px) {

    header {
        flex-direction: column;
        gap: 22px;

        padding: 25px 20px;
    }

    .logo img {
        height: 90px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 8px 12px;
        font-size: 12px;
    }

    .home-page,
    .filosofia-page,
    .chi-sono-page,
    .come-lavoro-page {
        background-attachment: scroll;
    }


    .hero-lux {
        padding: 220px 20px 80px;
    }

    .hero-lux h1,
    .page-hero-lux h1 {
        font-size: 52px;
    }

    .hero-top-text {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .hero-description {
        font-size: 14px;
        padding: 15px 20px;
    }

    .hero-divider span {
        width: 70px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-right: none;
        border-bottom: 1px solid rgba(244,240,232,0.18);
    }

    .service-card:last-child {
        border-bottom: none;
    }

    .quote-text {
        font-size: 20px;
        padding: 20px;
    }

    .page-hero-lux {
        min-height: 60vh;
        padding: 170px 20px 70px;
    }

    .about-container {
        padding: 80px 20px;
    }

    .about-block {
        padding: 28px;
    }

    .about-block h2 {
        font-size: 36px;
    }

    .profile-banner img {
        width: 100%;
        height: 320px;

        border-radius: 18px;
    }

    .filosofia-symbol img {
        max-width: 280px;
    }
}

/* =====================================
   COME LAVORO - PERGAMENA SATINATA
===================================== */

/* TITOLI */

.come-lavoro-page .about-block h2 {

    position: relative;
    z-index: 2;

    color: var(--title-silverpoint-dark);

    border-bottom: 1px solid rgba(140,110,70,0.22);

    text-shadow:
        0 1px 2px rgba(255,255,255,0.40);
}

/* TESTI */

.come-lavoro-page .about-block p {

    position: relative;
    z-index: 2;

    color: var(--title-seppia);

    font-weight: 500;

    text-shadow:
        0 1px 2px rgba(255,255,255,0.25);
}

/* ==========================================
   LISTE TRATTAMENTI
========================================== */
/* ===============================
   SPORTIVI - SEZIONI E IMMAGINI CAPITOLO
================================ */

.sport-section {
    padding: 40px 0;
    background-color: #e8d3ad;
}

.sport-image-chapter {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.sport-image-chapter img {
    width: 100%;
    display: block;
    border-radius: 12px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.20);
}

@media (max-width: 768px) {

    .sport-section {
        padding: 50px 16px;
    }

    .sport-image-chapter {
        margin: 50px auto;
        padding: 0;
    }
}

/* MENU A TENDINA TRATTAMENTI */

.treatment-dropdown summary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--title-silverpoint-dark);
    cursor: pointer;
    list-style: none;

    border-bottom: 1px solid rgba(200,169,107,0.18);
    padding-bottom: 12px;
}

.treatment-dropdown summary::-webkit-details-marker {
    display: none;
}

.treatment-dropdown summary::after {
    content: "+";
    float: right;
    color: var(--gold);
}

.treatment-dropdown[open] summary::after {
    content: "−";
}

.treatment-dropdown[open] summary {
    margin-bottom: 22px;
    color: var(--gold);
}

/* ===============================
   IMMAGINI RESPONSIVE PAGINE
================================ */

.page-image-chapter {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}


.page-image-chapter img {

    width: 100%;

    height: auto;

    display: block;

    object-fit:cover;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {

    .page-image-chapter {

        margin: 0 auto 25px;

        padding: 0;
    }

    .page-image-chapter img {

        width: 100%;

        height: auto;

        display: block;
    }

}
/* SFONDO VISIVO RESPONSIVE HOME */


.home-visual-bg {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 0;

    pointer-events: none;
}

.home-visual-bg picture,
.home-visual-bg img {
    width:100%;
    height: 100%;
    object-position:center;
    display: block;
}
/* IMMAGINE SFONDO HOME RESPONSIVE */

.home-visual-bg img {
    object-fit:contain;
    object-position: center top;
    opacity: 0.85;
}
.hero-lux,
.services-section,
.quote-section {
    position:relative;
    z-index: 2;
}
/* ===============================
   TABLET E SMARTPHONE
   CARD TRATTAMENTI SEPARATE
================================ */

@media (max-width: 1024px) {

    .services-container {

        grid-template-columns: 1fr;

        max-width: 700px;

        padding: 0 30px;

        gap: 35px;
    }


    .service-card {

        width: 100%;

        margin: 0 auto;

        border-radius: 22px;

        border: 1px solid rgba(255,255,255,0.30);

        min-height: 340px;
    }

}
/* ===============================
   SMARTPHONE VERTICALE
================================ */

@media (max-width: 700px) {

    .services-container {
        padding: 0 20px;
        gap: 28px;
    }

    .service-card {
        min-height: 320px;
        padding: 32px 24px;
    }

    .service-card h3 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-photo {
        width: 85px;
        height: 85px;
    }

}


/* ===============================
   SMARTPHONE - SFONDO HOME
================================ */

@media (max-width: 760px) {

    .home-visual-bg {
        height: 3000px;
    }

    .home-visual-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

}


/* ===============================
   TABLET
================================ */

@media (min-width: 761px) and (max-width: 1024px) {

    .hero-lux {
        min-height: 75vh;
        padding-bottom: 20px;
    }

    .services-section {
        margin-top: -80px;
        padding-top: 0;
    }

    .services-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        max-width: 940px;
        padding: 0 20px;
    }

    .service-card {
        padding: 30px 22px;
        min-height: 360px;
    }

    .service-photo {
        width: 90px;
        height: 90px;
    }

    .service-card h3 {
        font-size: 26px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }

}


/* ===============================
   TABLET E SMARTPHONE
================================ */

@media (max-width: 1024px) {

    .service-card {

        background:
            linear-gradient(
                135deg,
                rgba(255,255,255,0.12),
                rgba(255,255,255,0.05),
                rgba(244,240,232,0.03)
            );

        transition: all 0.4s ease;
    }

    .service-card:active,
    .service-card:focus-within {

        background:
            linear-gradient(
                135deg,
                rgba(255,255,255,0.45),
                rgba(244,240,232,0.25),
                rgba(230,118,7,0.08)
            );

        transform: translateY(-8px);

        border-color: rgba(230,118,7,0.35);

        box-shadow:
            0 25px 50px rgba(0,0,0,0.15),
            inset 0 1px 0 rgba(255,255,255,0.55),
            0 0 30px rgba(230,118,7,0.12);
    }

}
/* ===============================
   PAGINE INTERNE - SFONDO STANDARD
================================ */

.internal-page {
    padding: 40px 0;
    background-color: #e8d3ad;
}
