body {
    width: 100%;
    margin: 0;

    font-family: "All Round Gothic", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.all-head {
    width: 100%;
    height: 910px;
    margin: 0;
    background-image: url(/images/PL_TC-03_F\ \(1\).jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    header {
        width: 100%;
        height: 130px;
        display: flex;
        align-items: center;
        justify-content: space-between;

        img {
            padding-left: 40px;
            width: 290px;
        }

        nav {
            margin-right: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            width: 480px;
            height: 45px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.062);
            box-shadow: 0 8px 25px rgba(92, 92, 92, 0.144);
        }

        /* li dentro del nav */
        nav li {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100px;
            height: 30px;
            list-style: none;
            margin-right: 3px;
            cursor: pointer;
        }

        /* enlaces dentro del nav */
        nav li a {
            position: relative;
            /* necesario para usar ::after */
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            padding-bottom: 4px;
            transition: color 0.3s ease;
        }

        /* pseudo-elemento para la línea */
        nav li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 1px;
            background: #ffffff;
            transition: width 0.3s ease;
        }

        /* al hacer hover se anima */
        nav li a:hover {
            color: #202020;

        }

        nav li a:hover::after {
            width: 100%;
            /* la línea se expande */
        }

        #active {
            border-bottom: 1px solid #ffffff;
        }
    }

    .head-logo {
        width: 100%;
        height: 400px;
        display: flex;
        align-items: center;
    }
}

.all-head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.856) 100%);
    z-index: 0;
}

.all-head {
    position: relative;
    z-index: 1;
}

.social-description {
    width: 100%;
    height: 920px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(/images/mall-fondo2.jpg);
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.social-description::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.content-title-carrete {
    width: 760px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    padding-left: 20px;
    background: rgba(255, 227, 216, 0.18);
    /* color suave */
    backdrop-filter: blur(8px);
    /* desenfoque */
    -webkit-backdrop-filter: blur(12px);
    /* soporte Safari */
}

.all-carrete {
    width: 760px;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.342);
    /* sombra difusa */
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(223, 200, 200, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(18px);

    .content-slider {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.131);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        width: 35%;
        height: 450px;
        border-radius: 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);


        #img1,
        .big {
            width: 220px;
            height: 123px;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.46);
            border-radius: 12px;
            object-fit: cover;
            transition: all 0.8s ease-in-out;
        }

        #img2,
        .medium {
            width: 190px;
            height: 106px;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.46);
            border-radius: 12px;
            transition: all 0.8s ease-in-out;
            object-fit: cover;
        }

        #img3,
        .small {
            width: 160px;
            height: 90px;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.46);
            transition: all 0.8s ease-in-out;
            object-fit: cover;
        }
    }

    .content-right {
        width: 65%;
        height: 450px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;

        .content-img {
            width: 70%;
            height: 200px;
            border-radius: 18px;
            background-image: url(/images/IMG_3032.jpg);
            background-size: cover;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.46);
            
        }

        .content-text-carrete {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.46);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            width: 90%;
            height: 220px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;

            p {
                width: 90%;
                color: white;
                line-height: 1.6;
                /* multiplica la altura de cada línea */
                height: 200px;
                display: flex;
                text-align: center;
                align-items: center;
            }
        }
    }
}

.contactanos-info {
    background-color: red;
    background-image: url(/images/Fachada\ General\ -\ Primavera\ Life\ 1.png);
    background-size: cover;
    margin: 0;
    width: 100%;
    height: 650px;
    padding-top: 300px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;

    .contactanos-text {
        width: 1600px;
        height: 600px;
        gap: 10px;

        h1 {
            margin: 0;
            font-size: 55px;
            height: 80px;
            text-align: left;
            align-content: center;
        }

        p {
            margin: 0;
            width: 850px;
            height: 80px;
            text-align: left;
            font-size: 20px;
            align-content: center;
        }

        .contactanos-inputs {
            height: 400px;

            h2 {
                font-size: 14px;
                font-weight: 200;
            }

            .inputs {
                height: 300px;

                .content-input {
                    background-color: rgba(253, 253, 253, 0.274);
                    width: 350px;
                    height: 50px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 14px;
                    margin-bottom: 10px;
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.253);

                    input {
                        width: 80%;
                        height: 70%;
                        border: none;
                        background-color: #ffffff00;
                        outline: none;
                        color: #ffffff;
                        font-size: 15px;

                    }

                    input::placeholder {
                        color: #ffffff;
                        font-style: italic;
                    }
                }
            }

            button {
                width: 100px;
                height: 40px;
                border-radius: 18px;
                border: none;
                color: #ffffff;
                background-color: #ffffff6b;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.253);

            }
        }


    }
}

footer {
    width: 100%;
    height: 400px;
    background-color: black;
    color: #9e9e9e;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;

    .footer-text-all {
        width: 1500px;
        display: flex;
        flex-direction: column;
        height: 80%;
        font-size: 13px;

        .footer-content1 {
            height: 50%;
            display: flex;
            align-items: center;
            justify-content: space-between;

            .items {
                width: 35%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 30px;
            }

            .items-contactos {
                display: flex;
                flex-direction: column;
                width: 20%;
                height: 100%;
                gap: 10px;

                .content-contacto {
                    height: 100%;
                    display: flex;
                    align-items: center;
                    gap: 10px;

                    img {
                        width: 30px;
                        height: 30px;
                    }

                    .items-text {
                        .negrilla {
                            font-weight: 600;
                        }
                    }
                }
            }
        }

        .footer-content2 {
            height: 50%;
            display: flex;
            align-items: center;
            justify-content: space-between;

            h2 {
                font-size: 14px;
                font-weight: 100;
            }

            .iconos {
                width: 400px;
                display: flex;
                justify-content: center;
                gap: 20px;

                img {
                    cursor: pointer;
                }
            }
        }
    }

}


.social-description2 {
    width: 100%;
    height: 1800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(/images/Recorrido\ Comercial\ Piso\ PP\ -\ 1\ -\ 1\ 1\ \(1\).png);
    background-size: cover;
    position: relative;
    overflow: hidden;
    gap: 30px;

    .all-eventos {
        display: flex;
        flex-direction: column;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.342);
        /* sombra difusa */
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(223, 200, 200, 0.25);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(18px);
    }

    .all-carrete-2 {
        width: 760px;
        height: 500px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;


        .content-slider {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.131);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            width: 35%;
            height: 450px;
            border-radius: 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);


            #img1,
            .big {
                width: 220px;
                border-radius: 10px;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.46);
                border-radius: 12px;
                object-fit: cover;
                transition: all 0.8s ease-in-out;
            }

            #img2,
            .medium {
                width: 190px;
                border-radius: 10px;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.46);
                border-radius: 12px;
                transition: all 0.8s ease-in-out;
                object-fit: cover;
            }

            #img3,
            .small {
                width: 160px;
                border-radius: 10px;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.46);
                transition: all 0.8s ease-in-out;
                object-fit: cover;
            }
        }

        .content-right {
            width: 65%;
            height: 450px;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;

            .content-img1 {
                width: 70%;
                height: 200px;
                border-radius: 18px;
                background-image: url(/images/PhotoCabas.jpg);
                background-size: cover;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.46);
            }
            
            .content-img2 {
                width: 70%;
                height: 200px;
                border-radius: 18px;
                background-image: url(/images/IMG_8024.JPG);
                background-size: cover;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.46);
            }

            .content-text-carrete {
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.46);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                width: 90%;
                height: 220px;
                border-radius: 18px;
                display: flex;
                align-items: center;
                justify-content: center;

                p {
                    width: 90%;
                    color: white;
                    line-height: 1.6;
                    /* multiplica la altura de cada línea */
                    height: 200px;
                    display: flex;
                    text-align: center;
                    align-items: center;
                }
            }
        }
    }
}

.content-title-carrete-2 {
    width: 50%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    background: rgba(255, 227, 216, 0.18);
    /* color suave */
    backdrop-filter: blur(8px);
    /* desenfoque */
    -webkit-backdrop-filter: blur(12px);
    /* soporte Safari */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.342);

}

.all-marcas {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding-top: 50px;
}

.title-marcas {
    border-radius: 20px;
    display: flex;
    justify-content: center;
    width: 70%;
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    background: rgba(245, 231, 226, 0.61);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(12px);
}

.title-marcas h2 {
    width: 95%;
    color: #ffffff;
}

/* 🔹 Contenedor principal del scroll automático */
.content-marcas {
    width: 70%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    border-radius: 20px;
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 10px 0 20px 0;
    background: rgba(245, 231, 226, 0.61);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    /* 🔹 necesario para ocultar el desplazamiento */
    position: relative;
}

/* 🔹 Pista que se moverá automáticamente */
.content-marcas .scroll-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll-marcas 25s linear infinite;
    /* velocidad del movimiento */
}

/* 🔹 Tamaños originales */
.marca {
    width: 17%;
    height: 70% !important;
    flex: 0 0 auto;
}

.marca img {
    width: 100%;
    height: 60%;
    object-fit: contain;
}

/* 🔹 Animación: movimiento continuo de izquierda a derecha */
@keyframes scroll-marcas {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ===== Teléfonos (≤480px) ===== BIEN */
@media (max-width: 480px) {
    body {
        width: 100%;
        margin: 0;
        font-family: "All Round Gothic", sans-serif;
        font-weight: 100;
        font-style: normal;
    }

    .all-head {
        width: 100%;
        height: 420px;
        background-image: url(/images/PL_TC-03_F\ \(1\).jpg);
        background-size: cover;

        header {
            width: 100%;

            img {
                padding: 0;
            }
        }

        nav {
            background-color: green;
            width: 300px !important;
            font-size: 12px;
        }

        .head-logo {
            width: 100%;
            height: 200px;

            img {
                width: 300px;
                padding-left: 0px;
            }
        }
    }

    header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    nav {
        margin-left: 30px;
        gap: 20px;
        width: 300px;
    }

    nav li {
        width: 50px;
    }


    /*DESCRPCION*/
    .social-description {
        background-position: center;
        height: 1200px;
    }

    .content-title-carrete {
        width: 290px;
        height: 160px;
        text-align: center;
        font-size: 16px;
        padding: 0;
    }

    .all-carrete {
        width: 280px;
        flex-direction: column;
        height: 950px;
        padding: 0;

        .content-slider {
            width: 90%;
        }

        .content-right {
            width: 100%;

            .content-img {
                width: 90%;
            }

            .content-text-carrete {
                height: 210px;

                p {
                    font-size: 14px;
                    text-align: justify;
                }
            }
        }
    }

    /*carretes 2*/

    .social-description2 {
        height: 3000px;
        width: 100%;
    }

    .all-eventos {
        height: 1200px;
        width: 270px;
        padding-left: 0 !important;
        justify-content: start !important;
        padding-top: 10px;

        .content-title-carrete-2 {
            width: 250px;
        }

        .all-carrete-2 {
            flex-direction: column;
            justify-content: start;
            padding-top: 20px;
            width: 250px;
            height: 1120px;
            gap: 20px;

            .content-slider {
                width: 230px;
                height: 450px;
            }

            .content-right {
                width: 230px;
                height: 600px;

                .content-img {
                    width: 90%;
                }

                .content-text-carrete {
                    height: 330px;

                    p {
                        text-align: justify;
                    }

                }
            }

        }
    }

    .all-marcas {
        width: 500px !important;
        height: 400px;

        .title-marcas {
            height: 50px;
            width: 280px;

            h2 {
                font-size: 18px;
            }
        }

        .content-marcas {
            display: flex;
            overflow-x: auto;
            /* Scroll horizontal */
            overflow-y: hidden;
            scroll-behavior: smooth;
            gap: 10px;
            padding: 10px;
            width: 100%;
            /* Usa todo el ancho disponible */
            height: 150px;
            background: transparent;
            scroll-snap-type: x mandatory;

            .marca {
                flex: 0 0 auto;
                /* No se ajusta al ancho del contenedor */
                width: 120px;
                /* Controla el tamaño de cada imagen */
                height: 100px;
                text-align: center;
                border-radius: 10px;
                scroll-snap-align: start;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
        }
    }

    /* Opcional: ocultar barra de scroll */
    .content-marcas::-webkit-scrollbar {
        display: none;
    }

    .content-marcas {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /*CONTACTANOS INFORMACION*/

    .contactanos-info {
        width: 100%;
        height: auto;
        padding-top: 20px;
        background-position: center;

    }

    .contactanos-text {
        text-align: center;
        width: 100% !important;
        text-align: center;
        align-items: center !important;

        h1 {
            width: 100%;
            text-align: center !important;
            font-size: 28px !important;

        }

        p {
            width: 94% !important;
            height: 100px !important;
            text-align: center !important;
            font-size: 14px !important;
            padding: 10px;
        }
    }

    .contactanos-inputs {
        align-items: center;
    }

    .inputs {
        align-items: center;

        text-align: center;
        display: flex;
        flex-direction: column;

        .content-input {
            width: 300px !important;
            background-color: red;

            input {
                width: 50% !important;
            }

        }

    }

    /*FOOTER*/
    footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 1100px;
        width: 100%;
        gap: 50px;
    }

    footer img {
        padding-top: 20px;
    }

    .footer-text-all {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 800px;
    }

    .footer-content1 {
        width: 100%;
        height: 600px !important;
        display: flex;
        flex-direction: column;
    }

    .items-contactos {
        width: 300px !important;
        display: flex;
        align-items: center;
    }

    .content-contacto {
        flex-direction: column;
        width: 200px;
    }

    .items-text {
        width: 90%;
        text-align: center;
    }

    .items {
        width: 100%;
    }

    .items span {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .items div {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .items div img {
        display: none;
    }

    .footer-content2 {
        width: 100% !important;
        height: 200px !important;
        display: flex;
        flex-direction: column;
        align-items: center;

        h2 {
            width: 250px !important;
            text-align: center;
        }


        .iconos {
            width: 300px !important;
        }
    }

    .text-h2 {
        text-align: center;
        height: 40px;
        max-width: 90%;
        width: 30%;
        /* ✅ el texto nunca será más ancho que el 90% de la pantalla */
        font-size: 12px;
        /* ✅ más pequeño en móvil */
        line-height: 1.4;
        /* ✅ más compacto y legible */
        margin: 0 auto;

    }

}

/* Celulares grandes (≥480px y <768px) BIEN*/
@media (min-width: 480px) and (max-width: 767px) {

    body {
        width: 100%;
        margin: 0;
        font-family: "All Round Gothic", sans-serif;
        font-weight: 100;
        font-style: normal;
    }

    .all-head {
        width: 100%;
        height: 500px;
        background-image: url(/images/4.7.\ Interior\ de\ los\ Apartamentos\ 2.jpg);
        background-position: center;

        header {
            width: 100%;

            img {
                padding: 0;
            }
        }

        nav {
            width: 400px !important;
            font-size: 12px;
        }

        .head-logo {
            width: 100%;
            height: 200px;

            img {
                width: 250px;
                padding-left: 10px;
            }
        }
    }

    header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .logo {
        padding-right: 40px;
    }

    nav {
        margin-left: 30px;
        gap: 20px;
        width: 300px;
    }

    nav li {
        width: 50px;
    }

    #typewriter {
        font-size: 30px;
        width: 80%;
        height: 100px;
    }

    .content-title {
        width: 90%;
        height: 300px !important;
    }

    /*DESCRPCION*/
    .social-description {
        background-position: center;
        height: 1200px;
    }

    .content-title-carrete {
        width: 400px;
        height: 160px;
        text-align: center;
        font-size: 12px;
        padding: 0;
    }

    .all-carrete {
        width: 400px;
        flex-direction: column;
        height: 950px;
        padding: 0;

        .content-slider {
            width: 90%;
        }

        .content-right {
            width: 100%;

            .content-img {
                width: 90%;
            }

            .content-text-carrete {
                height: 210px;

                p {
                    font-size: 14px;
                    text-align: justify;
                }
            }
        }
    }


    /*ALL INFORMATON - CARRETES*/
    .all-information-bg {
        background-position: center;
        height: 3600px;

        .all-information {
            .text-information {
                width: 85%;
                font-size: 19px;
            }

            .title-information {
                display: none;
            }

            .parrafo-information {
                width: 90%;
                height: 400px;
                font-size: 16px;
            }

            .carrete-information {
                width: 90%;
                flex-direction: column;
                align-items: center;
                gap: 10px;

                .content-1-information {
                    width: 100%;
                    height: 400px;
                    gap: 10px;
                }

                .content-2-information {
                    width: 100%;
                    height: 400px;
                    gap: 10px;
                }
            }
        }


    }


    /*CONTACTANOS INFORMACION*/

    .contactanos-info {
        width: 100%;
        height: auto;
        padding-top: 20px;
        background-position: center;
    }

    .contactanos-text {
        text-align: center;
        width: 100% !important;
        text-align: center;

        h1 {
            width: 100%;
            text-align: center !important;
            font-size: 28px !important;
        }

        p {
            width: 100% !important;
            height: 100px !important;
            text-align: center !important;
            font-size: 16px !important;
            padding: 0;
        }
    }

    .contactanos-inputs {
        align-items: center;
    }

    .inputs {
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;

    }

    /*FOOTER*/
    footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 1100px;
        width: 100%;
        gap: 50px;
    }

    footer img {
        padding-top: 20px;
    }

    .footer-text-all {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 800px;
    }

    .footer-content1 {
        width: 100%;
        height: 600px !important;
        display: flex;
        flex-direction: column;
    }

    .items-contactos {
        width: 400px !important;
        display: flex;
        align-items: center;
    }

    .content-contacto {
        flex-direction: column;
        width: 200px;
    }

    .items-text {
        width: 90%;
        text-align: center;
    }

    .items {
        width: 100%;
    }

    .items span {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .items div {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .items div img {
        display: none;
    }

    .footer-content2 {
        width: 100% !important;
        height: 200px !important;
        display: flex;
        flex-direction: column;
        align-items: center;

        h2 {
            width: 400px !important;
            text-align: center;
        }
    }

    .text-h2 {
        text-align: center;
        height: 40px;
        max-width: 90%;
        width: 30%;
        /* ✅ el texto nunca será más ancho que el 90% de la pantalla */
        font-size: 12px;
        /* ✅ más pequeño en móvil */
        line-height: 1.4;
        /* ✅ más compacto y legible */
        margin: 0 auto;

    }
}

/* ========== TABLET ========== BIEN*/
@media (min-width: 768px) and (max-width: 1009px) {

    body {
        width: 100%;
        margin: 0;
        font-family: "All Round Gothic", sans-serif;
        font-weight: 100;
        font-style: normal;
    }

    .all-head {
        width: 100%;
        height: 600px;
        background-image: url(/images/PL_TC-03_F\ \(1\).jpg);
        background-size: cover;
        background-position: center;

        header {
            width: 100%;

            img {
                padding: 0;
            }
        }

        nav {
            width: 500px !important;
            font-size: 16px;
        }

        .head-logo {
            width: 100%;
            height: 300px;

            img {
                width: 450px;
                padding-left: 20px;
            }
        }
    }

    header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .logo {
        padding-right: 40px;
    }

    nav {
        margin-left: 30px;
        gap: 20px;
        width: 300px;
    }

    nav li {
        width: 50px;
    }

    /*DESCRPCION*/

    .social-description {
        background-position: center;

        .content-title-carrete {
            width: 700px;
            height: 130px;
        }

        .all-carrete {
            width: 700px;
            height: 500px;
        }
    }

    /*ALL INFORMATON - CARRETES*/
    .all-information-bg {
        background-image: url(/images/4.1.\ Recorrido\ por\ la\ Recepcion\ Aptos\ 2_2\ 1.png);
        background-position: center;
        background-size: cover;
        height: 2300px;

        .all-information {
            width: 100%;
            height: 100%;

            .text-information {
                width: 80%;
                font-size: 18px;
            }

            .title-information {
                width: 80%;
                font-size: 18px;
            }

            .parrafo-information {
                width: 80%;
                height: 280px;
                font-size: 16px;
            }

            .carrete-information {
                width: 80%;
                height: auto;
                display: flex;
                justify-content: center;
                gap: 10px;
            }

            .content-1-information {
                width: 30%;
                height: 600px;
                gap: 40px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .content-img-information {
                width: 100%;
                height: 40%;
                border-radius: 30px;
                background: rgba(245, 231, 226, 0.61);
                /* color suave */
                backdrop-filter: blur(2px);
                /* desenfoque */
                -webkit-backdrop-filter: blur(12px);
                /* soporte Safari */
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                line-height: 2;
                font-weight: 600;
                letter-spacing: 1px;
            }

            .content-2-information {
                width: 40%;
                height: 600px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .content-img-sola {
                width: 100%;
                height: 86%;
                border-radius: 30px;
                background: rgba(245, 231, 226, 0.61);
                /* color suave */
                backdrop-filter: blur(2px);
                /* desenfoque */
                -webkit-backdrop-filter: blur(12px);
                /* soporte Safari */
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                line-height: 2;
                font-weight: 600;
                letter-spacing: 1px;

            }

        }
    }


    /*CONTACTANOS INFORMACION*/

    .contactanos-info {
        width: 100%;
        height: auto;
        padding-top: 20px;
        background-position: center;

    }

    .contactanos-text {
        text-align: center;
        width: 100% !important;
        text-align: center;

        h1 {
            width: 100%;
            text-align: center !important;
            font-size: 28px !important;
        }

        p {
            width: 100% !important;
            height: 100px !important;
            text-align: center !important;
            font-size: 16px !important;
        }
    }

    .contactanos-inputs {
        align-items: center;
    }

    .inputs {
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;

    }

    /*FOOTER*/
    footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 1100px;
        width: 100%;
        gap: 50px;
    }

    footer img {
        padding-top: 20px;
    }

    .footer-text-all {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 800px;
    }

    .footer-content1 {
        width: 100%;
        height: 600px !important;
        display: flex;
        flex-direction: column;
    }

    .items-contactos {
        width: 400px !important;
        display: flex;
        align-items: center;
    }

    .content-contacto {
        flex-direction: column;
        width: 200px;
    }

    .items-text {
        width: 90%;
        text-align: center;
    }

    .items {
        width: 100%;
    }

    .items span {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .items div {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .items div img {
        display: none;
    }

    .footer-content2 {
        width: 100% !important;
        height: 200px !important;
        display: flex;
        flex-direction: column;
        align-items: center;

        h2 {
            width: 400px !important;
            text-align: center;
        }
    }

    .text-h2 {
        text-align: center;
        height: 40px;
        max-width: 90%;
        width: 30%;
        /* ✅ el texto nunca será más ancho que el 90% de la pantalla */
        font-size: 12px;
        /* ✅ más pequeño en móvil */
        line-height: 1.4;
        /* ✅ más compacto y legible */
        margin: 0 auto;

    }
}

/* ========== TABLET ========== BIEN*/
@media (min-width: 1010px) and (max-width: 1023px) {

    body {
        width: 100%;
        margin: 0;
        font-family: "All Round Gothic", sans-serif;
        font-weight: 100;
        font-style: normal;
    }

    .all-head {
        width: 100%;
        height: 650px;
         background-image: url(/images/PL_TC-03_F\ \(1\).jpg);
        background-size: cover;
        background-position: center;

        header {
            width: 100%;

            img {
                padding: 0;
            }
        }

        nav {
            width: 500px !important;
            font-size: 16px;
        }

        .head-logo {
            width: 100%;
            height: 400px;

            img {
                width: 500px;
                padding-left: 10px;
            }
        }
    }

    header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .logo {
        padding-right: 40px;
    }

    nav {
        margin-left: 30px;
        gap: 20px;
        width: 300px;
    }

    nav li {
        width: 50px;
    }

    #typewriter {
        font-size: 30px;
        width: 50%;
        height: 100px;
    }

    .content-title {
        width: 70%;
        height: 300px !important;
    }


    /*DESCRPCION*/

    .social-description {
        background-position: center;

        .content-title-carrete {
            width: 700px;
            height: 130px;
        }

        .all-carrete {
            width: 700px;
            height: 500px;
        }
    }

    /*ALL INFORMATON - CARRETES*/
    .all-information-bg {
        background-image: url(/images/4.1.\ Recorrido\ por\ la\ Recepcion\ Aptos\ 2_2\ 1.png);
        background-position: center;
        background-size: cover;
        height: 2300px;

        .all-information {
            width: 100%;
            height: 100%;

            .text-information {
                width: 80%;
                font-size: 18px;
            }

            .title-information {
                width: 80%;
                font-size: 18px;
            }

            .parrafo-information {
                width: 80%;
                height: 280px;
                font-size: 16px;
            }

            .carrete-information {
                width: 80%;
                height: auto;
                display: flex;
                justify-content: center;
                gap: 10px;
            }

            .content-1-information {
                width: 30%;
                height: 600px;
                gap: 40px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .content-img-information {
                width: 100%;
                height: 40%;
                border-radius: 30px;
                background: rgba(245, 231, 226, 0.61);
                /* color suave */
                backdrop-filter: blur(2px);
                /* desenfoque */
                -webkit-backdrop-filter: blur(12px);
                /* soporte Safari */
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                line-height: 2;
                font-weight: 600;
                letter-spacing: 1px;
            }

            .content-2-information {
                width: 40%;
                height: 600px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .content-img-sola {
                width: 100%;
                height: 86%;
                border-radius: 30px;
                background: rgba(245, 231, 226, 0.61);
                /* color suave */
                backdrop-filter: blur(2px);
                /* desenfoque */
                -webkit-backdrop-filter: blur(12px);
                /* soporte Safari */
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                line-height: 2;
                font-weight: 600;
                letter-spacing: 1px;

            }

        }
    }


    /*CONTACTANOS INFORMACION*/

    .contactanos-info {
        width: 100%;
        height: auto;
        padding-top: 20px;
        background-position: center;

    }

    .contactanos-text {
        text-align: center;
        width: 100% !important;
        text-align: center;

        h1 {
            width: 100%;
            text-align: center !important;
            font-size: 28px !important;
        }

        p {
            width: 100% !important;
            height: 100px !important;
            text-align: center !important;
            font-size: 16px !important;
        }
    }

    .contactanos-inputs {
        align-items: center;
    }

    .inputs {
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;

    }

    /*FOOTER*/
    footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 1100px;
        width: 100%;
        gap: 50px;
    }

    footer img {
        padding-top: 20px;
    }

    .footer-text-all {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 800px;
    }

    .footer-content1 {
        width: 100%;
        height: 600px !important;
        display: flex;
        flex-direction: column;
    }

    .items-contactos {
        width: 400px !important;
        display: flex;
        align-items: center;
    }

    .content-contacto {
        flex-direction: column;
        width: 200px;
    }

    .items-text {
        width: 90%;
        text-align: center;
    }

    .items {
        width: 100%;
    }

    .items span {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .items div {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .items div img {
        display: none;
    }

    .footer-content2 {
        width: 100% !important;
        height: 200px !important;
        display: flex;
        flex-direction: column;
        align-items: center;

        h2 {
            width: 400px !important;
            text-align: center;
        }
    }

    .text-h2 {
        text-align: center;
        height: 40px;
        max-width: 90%;
        width: 30%;
        /* ✅ el texto nunca será más ancho que el 90% de la pantalla */
        font-size: 12px;
        /* ✅ más pequeño en móvil */
        line-height: 1.4;
        /* ✅ más compacto y legible */
        margin: 0 auto;

    }
}

/* ========== LAPTOP ========== BIEN*/
@media (min-width: 1024px) and (max-width: 1200px) {
    body {
        width: 100%;
        margin: 0;
        font-family: "All Round Gothic", sans-serif;
        font-weight: 100;
        font-style: normal;
    }

    .all-head {
        width: 100%;
        height: 900px;
      background-image: url(/images/PL_TC-03_F\ \(1\).jpg);
        background-size: cover;
        background-position: center;

        header {
            width: 100%;

            img {
                padding-left: 20px;
            }
        }

        nav {
            width: 500px !important;
            font-size: 16px;
        }

        .head-logo {
            width: 100%;
            height: 500px;

            img {
                width: 600px;
                padding-left: 30px;
            }
        }
    }


    header {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        padding-right: 40px;
    }

    nav {
        margin-left: 30px;
        gap: 20px;
        width: 300px;
    }

    nav li {
        width: 50px;
    }

    #typewriter {
        font-size: 30px;
        width: 50%;
        height: 100px;
    }

    .content-title {
        width: 70%;
        height: 300px !important;
    }


    /*ALL INFORMATON - CARRETES*/

    .all-information-bg {
        background-image: url(/images/4.1.\ Recorrido\ por\ la\ Recepcion\ Aptos\ 2_2\ 1.png);
        background-position: center;
        background-size: cover;
        height: 2300px;

        .all-information {
            width: 100%;
            height: 100%;

            .text-information {
                width: 80%;
                font-size: 28px;
            }

            .title-information {
                width: 60%;
            }

            .parrafo-information {
                width: 80%;
                height: 400px;

                p {
                    width: 90%;
                }

            }

            .carrete-information {
                width: 80%;
                height: auto;
                display: flex;
                justify-content: center;
                gap: 30px;
            }

            .content-1-information {
                width: 25%;
                height: 400px;
                gap: 40px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .content-img-information {
                width: 100%;
                height: 40%;
                border-radius: 30px;
                background: rgba(245, 231, 226, 0.61);
                /* color suave */
                backdrop-filter: blur(2px);
                /* desenfoque */
                -webkit-backdrop-filter: blur(12px);
                /* soporte Safari */
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                line-height: 2;
                font-weight: 600;
                letter-spacing: 1px;
            }

            .content-2-information {
                width: 50%;
                height: 410px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 0;
            }

            .content-img-sola {
                width: 100%;
                height: 86%;
                border-radius: 30px;
                background: rgba(245, 231, 226, 0.61);
                /* color suave */
                backdrop-filter: blur(2px);
                /* desenfoque */
                -webkit-backdrop-filter: blur(12px);
                /* soporte Safari */
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                line-height: 2;
                font-weight: 600;
                letter-spacing: 1px;

            }

        }
    }

    /* contactos info*/
    .contactanos-info {
        width: 100%;
        height: 500px;

        .contactanos-text {
            width: 900px;
            height: 600px;
            gap: 10px;
        }
    }

    footer {
        width: 100%;
        height: 400px;
        background-color: black;
        color: #9e9e9e;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;

        .footer-text-all {
            width: 700px;
            display: flex;
            flex-direction: column;
            height: 80%;
            font-size: 13px;

            .footer-content1 {
                height: 50%;
                display: flex;
                justify-content: start;
                gap: 10px;

                .items {
                    width: 32%;
                    height: 100%;
                    display: flex;

                }

                .items-contactos {
                    display: flex;
                    flex-direction: column;
                    width: 20%;
                    height: 100%;

                    .content-contacto {
                        width: 200px;
                        height: 100%;
                        display: flex;
                        align-items: center;
                        gap: 10px;

                        img {
                            width: 30px;
                            height: 30px;
                        }

                        .items-text {
                            .negrilla {
                                font-weight: 600;
                            }
                        }
                    }
                }
            }

            .footer-content2 {
                height: 50%;
                display: flex;
                align-items: center;
                justify-content: space-between;

                h2 {
                    font-size: 14px;
                    font-weight: 100;
                }

                .iconos {
                    width: 400px;
                    display: flex;
                    justify-content: center;
                    gap: 20px;

                    img {
                        cursor: pointer;
                    }
                }
            }
        }

    }

}

/* ========== LAPTOP MAS GRANDE ========== */
@media (min-width: 1200px) and (max-width: 1700px) {
    body {
        width: 100%;
        margin: 0;
        font-family: "All Round Gothic", sans-serif;
        font-weight: 100;
        font-style: normal;
    }

    .all-head {
        width: 100%;
        height: 900px;
        background-image: url(/images/PL_TC-03_F\ \(1\).jpg);
        background-size: cover;
        background-position: center;

        header {
            width: 100%;

            img {
                padding-left: 20px;
            }
        }

        nav {
            width: 500px !important;
            font-size: 16px;
        }

        .head-logo {
            width: 100%;
            height: 600px;

            img {
                width: 700px;
                padding-left: 30px;
            }
        }
    }


    header {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        padding-right: 40px;
    }

    nav {
        margin-left: 30px;
        gap: 20px;
        width: 300px;
    }

    nav li {
        width: 50px;
    }


    /*ALL INFORMATON - CARRETES*/

    .all-information-bg {
        background-image: url(/images/4.1.\ Recorrido\ por\ la\ Recepcion\ Aptos\ 2_2\ 1.png);
        background-position: center;
        background-size: cover;
        height: 2300px;

        .all-information {
            width: 100%;
            height: 100%;

            .text-information {
                width: 70%;
                font-size: 28px;
            }

            .title-information {
                width: 60%;
            }

            .parrafo-information {
                width: 70%;
                height: 280px;

                p {
                    width: 90%;
                }

            }

            .carrete-information {
                width: 70%;
                height: auto;
                display: flex;
                justify-content: center;
                gap: 30px;
            }

            .content-1-information {
                width: 25%;
                height: 500px;
                gap: 40px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .content-img-information {
                width: 100%;
                height: 40%;
                border-radius: 30px;
                background: rgba(245, 231, 226, 0.61);
                /* color suave */
                backdrop-filter: blur(2px);
                /* desenfoque */
                -webkit-backdrop-filter: blur(12px);
                /* soporte Safari */
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                line-height: 2;
                font-weight: 600;
                letter-spacing: 1px;
            }

            .content-2-information {
                width: 50%;
                height: 510px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 0;
            }

            .content-img-sola {
                width: 100%;
                height: 86%;
                border-radius: 30px;
                background: rgba(245, 231, 226, 0.61);
                /* color suave */
                backdrop-filter: blur(2px);
                /* desenfoque */
                -webkit-backdrop-filter: blur(12px);
                /* soporte Safari */
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                line-height: 2;
                font-weight: 600;
                letter-spacing: 1px;

            }

        }
    }


    footer {
        width: 100%;
        height: 400px;
        background-color: black;
        color: #9e9e9e;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;

        .footer-text-all {
            width: 1200px;
            display: flex;
            flex-direction: column;
            height: 80%;
            font-size: 13px;

            .footer-content1 {
                height: 50%;
                display: flex;
                justify-content: start;
                gap: 10px;

                .items {
                    width: 32%;
                    height: 100%;
                    display: flex;

                }

                .items-contactos {
                    display: flex;
                    flex-direction: column;
                    width: 20%;
                    height: 100%;

                    .content-contacto {
                        width: 300px;
                        height: 100%;
                        display: flex;
                        align-items: center;
                        gap: 10px;

                        img {
                            width: 30px;
                            height: 30px;
                        }

                        .items-text {
                            .negrilla {
                                font-weight: 600;
                            }
                        }
                    }
                }
            }

            .footer-content2 {
                height: 50%;
                display: flex;
                align-items: center;
                justify-content: space-between;

                h2 {
                    font-size: 14px;
                    font-weight: 100;
                }

                .iconos {
                    width: 400px;
                    display: flex;
                    justify-content: center;
                    gap: 20px;

                    img {
                        cursor: pointer;
                    }
                }
            }
        }

    }



}