﻿
body {
    margin: 0;
    padding: 0;
}

/* Schermi grandi o ad alta risoluzione */
@media screen and (min-width: 1690px) {
    .index-main-info {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 5rem auto 12rem;
        grid-template-areas:
            "head"
            "body"
            "footer";
        width: 100%;
        height: 100dvh;
    }

    .index-body-info {
        display: grid;
        grid-template-rows: 28rem auto;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        grid-area: body;
    }

    .index-body-info-head {
        height: 28rem;
        width: 100%;
    }

    .index-body-info-head-img img {
        height: 28rem;
        width: 100%;
        object-fit: fill;
        z-index: -1;
    }

    .index-body-info-head-title {
        position: relative;
        top: -100%;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        z-index: 1;
        background: rgba(0,0,0, 0);
        background: -webkit-linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
        background: -moz-linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
        background: linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
    }

        .index-body-info-head-title h1 {
            font-family: var(--fuente);
            font-size: 3.8rem;
            color: var(--colorWhite);
            font-weight: bold;
        }

        .index-body-info-head-title span {
            font-family: var(--fuenteLight);
            font-size: 1.8rem;
            color: var(--color3);
        }

    .index-body-info-main {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-main > h2 {
            font-family: var(--fuente);
            font-size: 3rem;
            color: var(--color1);
            text-align: center;
        }

        .index-body-info-main > h3 {
            font-family: var(--fuente);
            font-size: 1.4rem;
            color: var(--color1B);
            text-align: center;
        }

        .index-body-info-main > span {
            font-family: var(--fuenteLight);
            font-size: 1rem;
            color: var(--colorBlack);
            text-align: center;
            width: 65%;
            height: max-content;
        }

            .index-body-info-main > span strong {
                font-size: 1rem;
                color: var(--color1A);
            }

    .index-body-info-main-card {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        height: auto;
        width: 100%;
        padding: 0.8rem;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-main-card > h4 {
            font-family: var(--fuenteLight);
            font-size: 2rem;
            color: var(--color1A);
            text-align: center;
        }

    .index-body-info-main-card-body {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        height: 100%;
        width: auto;
        padding: 0.8rem;                
    }

    .index-body-info-main-card-body-card {
        display: flex;
        gap: 0.5rem;
        width: 15rem;
        height: 15rem;
        background-color: var(--colorWhite);
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
        -webkit-transition: -webkit-transform 0.4s;
        -moz-transition: -moz-transform 0.4s;
        -o-transition: -o-transform 0.4s;
        transition: transform 0.4s;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
        transform-style: preserve-3d;
        
    }

    .index-body-info-main-card-body-card.flipped {
        -webkit-transform: rotateY( 180deg );
        -moz-transform: rotateY( 180deg );
        -o-transform: rotateY( 180deg );
        transform: rotateY( 180deg );
    }

    .index-body-info-main-card-body-card-front {  
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .index-card-content-front {
        display: grid;
        grid-template-rows: 8rem auto 2rem;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        height: 100%;
        width: 100%;
    }

        .index-card-content-front > div {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
        }

            .index-card-content-front-image {
                height: 6rem;
                width: 6rem;
            }

            .index-card-content-front > div h4 {
                font-family: var(--fuenteLight);
                font-size: 1.3rem;
                color: var(--color4);
                text-align: center;
            }

    .index-tap {
        height: 1.5rem;
        width: 1.5rem;
    }

    .index-body-info-main-card-body-card-back {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: rotateY( 180deg );
        -moz-transform: rotateY( 180deg );
        -o-transform: rotateY( 180deg );
        transform: rotateY( 180deg );
        
    }

    .index-card-content-back {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        cursor: pointer;
        height: 100%;
        width: 100%;
    }

        .index-card-content-back > span {
            font-family: var(--fuenteLight);
            font-size: 0.8rem;
            color: var(--colorBlack);
            text-align: center;
        }


    .index-body-info-beneficios {
        background-image: url(/Logo/back-beneficios-patrocinador.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        width: 100%;
        height: auto;        
    }

        .index-body-info-beneficios > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            height: 100%;
            width: 100%;           
            padding: 1rem;
        }

    .index-body-info-beneficios-card {
        display: grid;
        grid-template-columns: 15rem auto;
        gap: 0.5rem;
        height: auto;
        width: 60%;
        padding: 0.5rem;
        background-color: var(--colorMenuDrop);
        backdrop-filter: blur(5px);
        border-radius: 0.5rem;
    }

    .index-body-info-beneficios-card-head {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-beneficios-card-head > h2 {
            font-family: var(--fuenteLight);
            font-size: 1.8rem;
            color: var(--color1);
            text-align: center;
        }

    .index-body-info-beneficios-card-body {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-beneficios-card-body > div {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            width: 100%;
            height: 100%;
        }

            .index-body-info-beneficios-card-body > div h4 {
                font-family: var(--fuenteLight);
                font-size: 1.5rem;
                color: var(--color1);
            }

            .index-body-info-beneficios-card-body > div span {
                font-family: var(--fuenteLight);
                font-size: 0.9rem;
                color: var(--colorBlack);
            }

}

/* Schermi Desktop o Portatili */
@media screen and (min-width: 1280px) and (max-width: 1689px) {
    .index-main-info {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 5rem auto 12rem;
        grid-template-areas:
            "head"
            "body"
            "footer";
        width: 100%;
        height: 100dvh;
    }

    .index-body-info {
        display: grid;
        grid-template-rows: 28rem auto;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        grid-area: body;
    }

    .index-body-info-head {
        height: 28rem;
        width: 100%;
    }

    .index-body-info-head-img img {
        height: 28rem;
        width: 100%;
        object-fit: fill;
        z-index: -1;
    }

    .index-body-info-head-title {
        position: relative;
        top: -100%;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        z-index: 1;
        background: rgba(0,0,0, 0);
        background: -webkit-linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
        background: -moz-linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
        background: linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
    }

        .index-body-info-head-title h1 {
            font-family: var(--fuente);
            font-size: 3.8rem;
            color: var(--colorWhite);
            font-weight: bold;
        }

        .index-body-info-head-title span {
            font-family: var(--fuenteLight);
            font-size: 1.8rem;
            color: var(--color3);
        }

    .index-body-info-main {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-main > h2 {
            font-family: var(--fuente);
            font-size: 3rem;
            color: var(--color1);
            text-align: center;
        }

        .index-body-info-main > h3 {
            font-family: var(--fuente);
            font-size: 1.4rem;
            color: var(--color1B);
            text-align: center;
        }

        .index-body-info-main > span {
            font-family: var(--fuenteLight);
            font-size: 1rem;
            color: var(--colorBlack);
            text-align: center;
            width: 65%;
            height: max-content;
        }

            .index-body-info-main > span strong {
                font-size: 1rem;
                color: var(--color1A);
            }

    .index-body-info-main-card {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        height: auto;
        width: 100%;
        padding: 0.8rem;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-main-card > h4 {
            font-family: var(--fuenteLight);
            font-size: 2rem;
            color: var(--color1A);
            text-align: center;
        }

    .index-body-info-main-card-body {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        height: 100%;
        width: auto;
        padding: 0.8rem;
    }

    .index-body-info-main-card-body-card {
        display: flex;
        gap: 0.5rem;
        width: 15rem;
        height: 15rem;
        background-color: var(--colorWhite);
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
        -webkit-transition: -webkit-transform 0.4s;
        -moz-transition: -moz-transform 0.4s;
        -o-transition: -o-transform 0.4s;
        transition: transform 0.4s;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

        .index-body-info-main-card-body-card.flipped {
            -webkit-transform: rotateY( 180deg );
            -moz-transform: rotateY( 180deg );
            -o-transform: rotateY( 180deg );
            transform: rotateY( 180deg );
        }

    .index-body-info-main-card-body-card-front {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .index-card-content-front {
        display: grid;
        grid-template-rows: 8rem auto;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        height: 100%;
        width: 100%;
    }

        .index-card-content-front > div {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
        }

    .index-card-content-front-image {
        height: 6rem;
        width: 6rem;
    }

    .index-card-content-front > div h4 {
        font-family: var(--fuenteLight);
        font-size: 1.3rem;
        color: var(--color4);
        text-align: center;
    }

    .index-tap {
        height: 1.5rem;
        width: 1.5rem;
    }

    .index-body-info-main-card-body-card-back {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: rotateY( 180deg );
        -moz-transform: rotateY( 180deg );
        -o-transform: rotateY( 180deg );
        transform: rotateY( 180deg );
    }

    .index-card-content-back {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        cursor: pointer;
        height: 100%;
        width: 100%;
    }

        .index-card-content-back > span {
            font-family: var(--fuenteLight);
            font-size: 0.8rem;
            color: var(--colorBlack);
            text-align: center;
        }


    .index-body-info-beneficios {
        background-image: url(/Logo/back-beneficios-patrocinador.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        width: 100%;
        height: auto;
    }

        .index-body-info-beneficios > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            height: 100%;
            width: 100%;
            padding: 1rem;
        }

    .index-body-info-beneficios-card {
        display: grid;
        grid-template-columns: 15rem auto;
        gap: 0.5rem;
        height: auto;
        width: 60%;
        padding: 0.5rem;
        background-color: var(--colorMenuDrop);
        backdrop-filter: blur(5px);
        border-radius: 0.5rem;
    }

    .index-body-info-beneficios-card-head {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-beneficios-card-head > h2 {
            font-family: var(--fuenteLight);
            font-size: 1.8rem;
            color: var(--color1);
            text-align: center;
        }

    .index-body-info-beneficios-card-body {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-beneficios-card-body > div {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            width: 100%;
            height: 100%;
        }

            .index-body-info-beneficios-card-body > div h4 {
                font-family: var(--fuenteLight);
                font-size: 1.5rem;
                color: var(--color1);
            }

            .index-body-info-beneficios-card-body > div span {
                font-family: var(--fuenteLight);
                font-size: 0.9rem;
                color: var(--colorBlack);
            }
}

/* Tablet in modalità horizontal */
@media screen and (min-width: 737px) and (max-width: 1279px) {
    .index-main-info {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 9rem auto 12rem;
        grid-template-areas:
            "head"
            "body"
            "footer";
        width: 100%;
        height: 100dvh;
    }

    .index-body-info {
        display: grid;
        grid-template-rows: 28rem auto;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        grid-area: body;
    }

    .index-body-info-head {
        height: 28rem;
        width: 100%;
    }

    .index-body-info-head-img img {
        height: 28rem;
        width: 100%;
        object-fit: fill;
        z-index: -1;
    }

    .index-body-info-head-title {
        position: relative;
        top: -100%;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        z-index: 1;
        background: rgba(0,0,0, 0);
        background: -webkit-linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
        background: -moz-linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
        background: linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
    }

        .index-body-info-head-title h1 {
            font-family: var(--fuente);
            font-size: 2.3rem;
            color: var(--colorWhite);
            font-weight: bold;
            text-align: center;
        }

        .index-body-info-head-title span {
            font-family: var(--fuenteLight);
            font-size: 1.3rem;
            color: var(--color3);
            text-align: center;
        }

    .index-body-info-main {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 0.5rem
    }

        .index-body-info-main > h2 {
            font-family: var(--fuente);
            font-size: 1.8rem;
            color: var(--color1);
            text-align: center;
        }

        .index-body-info-main > h3 {
            font-family: var(--fuente);
            font-size: 1.2rem;
            color: var(--color1B);
            text-align: center;
        }

        .index-body-info-main > span {
            font-family: var(--fuenteLight);
            font-size: 0.9rem;
            color: var(--colorBlack);
            text-align: center;
            width: 100%;
            height: max-content;
        }

            .index-body-info-main > span strong {
                font-size: 0.9rem;
                color: var(--color1A);
            }

    .index-body-info-main-card {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        height: auto;
        width: 100%;
        padding: 0.8rem;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-main-card > h4 {
            font-family: var(--fuenteLight);
            font-size: 1.4rem;
            color: var(--color1A);
            text-align: center;
        }



    .index-body-info-main-card-body {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        height: 100%;
        width: auto;
        padding: 0.8rem;
    }

    .index-body-info-main-card-body-card {
        display: flex;
        gap: 0.5rem;
        width: 12rem;
        height: 12rem;
        background-color: var(--colorWhite);
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
        -webkit-transition: -webkit-transform 0.4s;
        -moz-transition: -moz-transform 0.4s;
        -o-transition: -o-transform 0.4s;
        transition: transform 0.4s;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

        .index-body-info-main-card-body-card.flipped {
            -webkit-transform: rotateY( 180deg );
            -moz-transform: rotateY( 180deg );
            -o-transform: rotateY( 180deg );
            transform: rotateY( 180deg );
        }

    .index-body-info-main-card-body-card-front {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .index-card-content-front {
        display: grid;
        grid-template-rows: 5rem auto;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        height: 100%;
        width: 100%;
    }

        .index-card-content-front > div {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
        }

    .index-card-content-front-image {
        height: 4rem;
        width: 4rem;
    }

    .index-card-content-front > div h4 {
        font-family: var(--fuenteLight);
        font-size: 1.3rem;
        color: var(--color4);
        text-align: center;
    }

    .index-tap {
        height: 1.5rem;
        width: 1.5rem;
    }

    .index-body-info-main-card-body-card-back {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: rotateY( 180deg );
        -moz-transform: rotateY( 180deg );
        -o-transform: rotateY( 180deg );
        transform: rotateY( 180deg );
    }

    .index-card-content-back {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        cursor: pointer;
        height: 100%;
        width: 100%;
    }

        .index-card-content-back > span {
            font-family: var(--fuenteLight);
            font-size: 0.9rem;
            color: var(--colorBlack);
            text-align: center;
        }


    .index-body-info-beneficios {
        background-image: url(/Logo/back-beneficios-patrocinador.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        width: 100%;
        height: auto;
    }

        .index-body-info-beneficios > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            height: 100%;
            width: 100%;
            padding: 1rem;
        }

    .index-body-info-beneficios-card {
        display: grid;
        grid-template-rows: 5rem auto;
        gap: 0.5rem;
        height: auto;
        width: 100%;
        padding: 0.5rem;
        background-color: var(--colorMenuDrop);
        backdrop-filter: blur(5px);
        border-radius: 0.5rem;
    }

    .index-body-info-beneficios-card-head {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-beneficios-card-head > h2 {
            font-family: var(--fuenteLight);
            font-size: 1.4rem;
            color: var(--color1);
            text-align: center;
        }

    .index-body-info-beneficios-card-body {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-beneficios-card-body > div {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            width: 100%;
            height: 100%;
        }

            .index-body-info-beneficios-card-body > div h4 {
                font-family: var(--fuenteLight);
                font-size: 1.1rem;
                color: var(--color1);
                text-align: center;
            }

            .index-body-info-beneficios-card-body > div span {
                font-family: var(--fuenteLight);
                font-size: 0.9rem;
                color: var(--colorBlack);
                text-align: justify;
            }
}

/* Tablet in modalità verticale */
@media screen and (min-width: 481px) and (max-width: 736px) {
    .index-main-info {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 9rem auto 12rem;
        grid-template-areas:
            "head"
            "body"
            "footer";
        width: 100%;
        height: 100dvh;
    }

    .index-body-info {
        display: grid;
        grid-template-rows: 28rem auto;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        grid-area: body;
    }

    .index-body-info-head {
        height: 28rem;
        width: 100%;
    }

    .index-body-info-head-img img {
        height: 28rem;
        width: 100%;
        object-fit: fill;
        z-index: -1;
    }

    .index-body-info-head-title {
        position: relative;
        top: -100%;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        z-index: 1;
        background: rgba(0,0,0, 0);
        background: -webkit-linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
        background: -moz-linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
        background: linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
    }

        .index-body-info-head-title h1 {
            font-family: var(--fuente);
            font-size: 2.3rem;
            color: var(--colorWhite);
            font-weight: bold;
            text-align: center;
        }

        .index-body-info-head-title span {
            font-family: var(--fuenteLight);
            font-size: 1.3rem;
            color: var(--color3);
            text-align: center;
        }

    .index-body-info-main {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 0.5rem
    }

        .index-body-info-main > h2 {
            font-family: var(--fuente);
            font-size: 1.8rem;
            color: var(--color1);
            text-align: center;
        }

        .index-body-info-main > h3 {
            font-family: var(--fuente);
            font-size: 1.2rem;
            color: var(--color1B);
            text-align: center;
        }

        .index-body-info-main > span {
            font-family: var(--fuenteLight);
            font-size: 0.9rem;
            color: var(--colorBlack);
            text-align: center;
            width: 100%;
            height: max-content;
        }

            .index-body-info-main > span strong {
                font-size: 0.9rem;
                color: var(--color1A);
            }

    .index-body-info-main-card {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        height: auto;
        width: 100%;
        padding: 0.8rem;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-main-card > h4 {
            font-family: var(--fuenteLight);
            font-size: 1.4rem;
            color: var(--color1A);
            text-align: center;
        }



    .index-body-info-main-card-body {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: 100%;
        width: auto;
        padding: 0.8rem;
    }

    .index-body-info-main-card-body-card {
        display: flex;
        gap: 0.5rem;
        width: 12rem;
        height: 12rem;
        background-color: var(--colorWhite);
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
        -webkit-transition: -webkit-transform 0.4s;
        -moz-transition: -moz-transform 0.4s;
        -o-transition: -o-transform 0.4s;
        transition: transform 0.4s;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

        .index-body-info-main-card-body-card.flipped {
            -webkit-transform: rotateY( 180deg );
            -moz-transform: rotateY( 180deg );
            -o-transform: rotateY( 180deg );
            transform: rotateY( 180deg );
        }

    .index-body-info-main-card-body-card-front {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .index-card-content-front {
        display: grid;
        grid-template-rows: 5rem auto;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        height: 100%;
        width: 100%;
    }

        .index-card-content-front > div {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
        }

    .index-card-content-front-image {
        height: 4rem;
        width: 4rem;
    }

    .index-card-content-front > div h4 {
        font-family: var(--fuenteLight);
        font-size: 1.3rem;
        color: var(--color4);
        text-align: center;
    }

    .index-tap {
        height: 1.5rem;
        width: 1.5rem;
    }

    .index-body-info-main-card-body-card-back {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: rotateY( 180deg );
        -moz-transform: rotateY( 180deg );
        -o-transform: rotateY( 180deg );
        transform: rotateY( 180deg );
    }

    .index-card-content-back {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        cursor: pointer;
        height: 100%;
        width: 100%;
    }

        .index-card-content-back > span {
            font-family: var(--fuenteLight);
            font-size: 0.9rem;
            color: var(--colorBlack);
            text-align: center;
        }


    .index-body-info-beneficios {
        background-image: url(/Logo/back-beneficios-patrocinador.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        width: 100%;
        height: auto;
    }

        .index-body-info-beneficios > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            height: 100%;
            width: 100%;
            padding: 1rem;
        }

    .index-body-info-beneficios-card {
        display: grid;
        grid-template-rows: 5rem auto;
        gap: 0.5rem;
        height: auto;
        width: 100%;
        padding: 0.5rem;
        background-color: var(--colorMenuDrop);
        backdrop-filter: blur(5px);
        border-radius: 0.5rem;
    }

    .index-body-info-beneficios-card-head {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-beneficios-card-head > h2 {
            font-family: var(--fuenteLight);
            font-size: 1.4rem;
            color: var(--color1);
            text-align: center;
        }

    .index-body-info-beneficios-card-body {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-beneficios-card-body > div {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            width: 100%;
            height: 100%;
        }

            .index-body-info-beneficios-card-body > div h4 {
                font-family: var(--fuenteLight);
                font-size: 1.1rem;
                color: var(--color1);
                text-align: center;
            }

            .index-body-info-beneficios-card-body > div span {
                font-family: var(--fuenteLight);
                font-size: 0.9rem;
                color: var(--colorBlack);
                text-align: justify;
            }
}

/* Smartphone o piccoli Tablet */
@media screen and (max-width: 480px) {
    .index-main-info {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 9rem auto 12rem;
        grid-template-areas:
            "head"
            "body"
            "footer";
        width: 100%;
        height: 100dvh;
    }

    .index-body-info {
        display: grid;
        grid-template-rows: 28rem auto;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        grid-area: body;
    }

    .index-body-info-head {
        height: 28rem;
        width: 100%;
    }

    .index-body-info-head-img img {
        height: 28rem;
        width: 100%;
        object-fit: fill;
        z-index: -1;
    }

    .index-body-info-head-title {
        position: relative;
        top: -100%;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        z-index: 1;
        background: rgba(0,0,0, 0);
        background: -webkit-linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
        background: -moz-linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
        background: linear-gradient(180deg,rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%);
    }

        .index-body-info-head-title h1 {
            font-family: var(--fuente);
            font-size: 2.3rem;
            color: var(--colorWhite);
            font-weight: bold;
            text-align: center;
        }

        .index-body-info-head-title span {
            font-family: var(--fuenteLight);
            font-size: 1.3rem;
            color: var(--color3);
            text-align: center;
        }

    .index-body-info-main {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 0.5rem
    }

        .index-body-info-main > h2 {
            font-family: var(--fuente);
            font-size: 1.8rem;
            color: var(--color1);
            text-align: center;
        }

        .index-body-info-main > h3 {
            font-family: var(--fuente);
            font-size: 1.2rem;
            color: var(--color1B);
            text-align: center;
        }

        .index-body-info-main > span {
            font-family: var(--fuenteLight);
            font-size: 0.9rem;
            color: var(--colorBlack);
            text-align: center;
            width: 100%;
            height: max-content;
        }

            .index-body-info-main > span strong {
                font-size: 0.9rem;
                color: var(--color1A);
            }

    .index-body-info-main-card {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        height: auto;
        width: 100%;
        padding: 0.8rem;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-main-card > h4 {
            font-family: var(--fuenteLight);
            font-size: 1.4rem;
            color: var(--color1A);
            text-align: center;
        }



    .index-body-info-main-card-body {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: 100%;
        width: auto;
        padding: 0.8rem;
    }

    .index-body-info-main-card-body-card {
        display: flex;
        gap: 0.5rem;
        width: 12rem;
        height: 12rem;
        background-color: var(--colorWhite);
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
        -webkit-transition: -webkit-transform 0.4s;
        -moz-transition: -moz-transform 0.4s;
        -o-transition: -o-transform 0.4s;
        transition: transform 0.4s;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

        .index-body-info-main-card-body-card.flipped {
            -webkit-transform: rotateY( 180deg );
            -moz-transform: rotateY( 180deg );
            -o-transform: rotateY( 180deg );
            transform: rotateY( 180deg );
        }

    .index-body-info-main-card-body-card-front {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .index-card-content-front {
        display: grid;
        grid-template-rows: 5rem auto;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        height: 100%;
        width: 100%;
    }

        .index-card-content-front > div {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
        }

    .index-card-content-front-image {
        height: 4rem;
        width: 4rem;
    }

    .index-card-content-front > div h4 {
        font-family: var(--fuenteLight);
        font-size: 1.3rem;
        color: var(--color4);
        text-align: center;
    }

    .index-tap {
        height: 1.5rem;
        width: 1.5rem;
    }

    .index-body-info-main-card-body-card-back {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: rotateY( 180deg );
        -moz-transform: rotateY( 180deg );
        -o-transform: rotateY( 180deg );
        transform: rotateY( 180deg );
    }

    .index-card-content-back {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        cursor: pointer;
        height: 100%;
        width: 100%;
    }

        .index-card-content-back > span {
            font-family: var(--fuenteLight);
            font-size: 0.9rem;
            color: var(--colorBlack);
            text-align: center;
        }


    .index-body-info-beneficios {
        background-image: url(/Logo/back-beneficios-patrocinador.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        width: 100%;
        height: auto;
    }

        .index-body-info-beneficios > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            height: 100%;
            width: 100%;
            padding: 1rem;
        }

    .index-body-info-beneficios-card {
        display: grid;
        grid-template-rows: 5rem auto;
        gap: 0.5rem;
        height: auto;
        width: 100%;
        padding: 0.5rem;
        background-color: var(--colorMenuDrop);
        backdrop-filter: blur(5px);
        border-radius: 0.5rem;
    }

    .index-body-info-beneficios-card-head {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-beneficios-card-head > h2 {
            font-family: var(--fuenteLight);
            font-size: 1.4rem;
            color: var(--color1);
            text-align: center;
        }

    .index-body-info-beneficios-card-body {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

        .index-body-info-beneficios-card-body > div {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            width: 100%;
            height: 100%;
        }

            .index-body-info-beneficios-card-body > div h4 {
                font-family: var(--fuenteLight);
                font-size: 1.1rem;
                color: var(--color1);
                text-align: center;
            }

            .index-body-info-beneficios-card-body > div span {
                font-family: var(--fuenteLight);
                font-size: 0.9rem;
                color: var(--colorBlack);
                text-align: justify;
            }
}
