﻿.core-page {
    background: #000;
    color: #fff;
}

/* HERO */

.core-hero {
    position: relative;
    min-height: calc(100vh - 92px);
    background-image: url('/assets/images/Consola/consolalargo.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .core-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.10);
        z-index: 1;
    }

.core-hero-content {
    position: relative;
    z-index: 2;
    width: 72%;
    margin-left: auto;
    margin-right: 4rem;
    text-align: right;
}

    .core-hero-content p {
        font-size: clamp(1.1rem, 2vw, 2.2rem);
        font-weight: 300;
        font-style: italic;
        letter-spacing: 4px;
        margin-bottom: 1rem;
    }

    .core-hero-content h1 {
        font-size: clamp(2.4rem, 4vw, 4.8rem);
        font-weight: 800;
        letter-spacing: 5px;
        line-height: 1.15;
        margin-bottom: 1.7rem;
    }

    .core-hero-content span,
    .core-hero-content strong {
        display: block;
        font-size: clamp(1rem, 1.6vw, 1.8rem);
        letter-spacing: 3px;
    }

    .core-hero-content span {
        font-weight: 300;
        margin-bottom: .5rem;
    }

    .core-hero-content strong {
        font-weight: 800;
        font-style: italic;
    }

/* BENEFICIOS */

.core-benefits {
    position: relative;
    background-image: url('/assets/images/Consola/Rectangulo14.png');
    background-size: cover;
    background-position: center top;
    background-repeat: repeat-y;
    padding: 5rem 0 7rem;
    overflow: hidden;
}

.core-linea {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    opacity: .45;
    pointer-events: none;
    z-index: 1;
}

.core-benefits .container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
}

.core-benefits > .container > h2 {
    font-size: clamp(1.3rem, 2.2vw, 2.5rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1.35;
    margin-bottom: 5rem;
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 4rem;
    margin-bottom: 5rem;
}

.core-card {
    border-radius: 45px;
    background: linear-gradient(to bottom, rgba(132, 100, 43, .58), rgba(166, 128, 58, .72));
    box-shadow: inset 0 -7px 0 rgba(70, 48, 18, .30);
    display: flex;
    align-items: center;
    gap: 2.2rem;
    min-height: 190px;
    padding: 1.8rem 2.2rem;
}

.core-card-center {
    grid-column: 1 / -1;
    width: 48%;
    margin: 0 auto;
}

.core-card img {
    width: 115px;
    height: 115px;
    object-fit: contain;
    flex-shrink: 0;
}

.core-card h3 {
    font-size: clamp(1.1rem, 1.6vw, 1.7rem);
    font-weight: 300;
    line-height: 1.25;
    margin: 0;
}

    .core-card h3 strong {
        font-weight: 800;
    }

/* ACCESO */

.core-access {
    text-align: center;
    margin-top: 6rem;
}

    .core-access h2 {
        font-size: clamp(1.3rem, 1.9vw, 2.1rem);
        font-weight: 800;
        margin-bottom: 2.5rem;
    }

.core-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    height: 82px;
    background: #d5811a;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    font-weight: 300;
    transition: all .3s ease;
}

    .core-login-btn:hover {
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
    }

/* RESPONSIVE TABLET */

@media (max-width: 1200px) {
    .core-benefits .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .core-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .core-card,
    .core-card-center {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
        min-height: 160px;
        padding: 1.6rem 1.8rem;
        gap: 1.4rem;
        border-radius: 32px;
    }

        .core-card img {
            width: 85px;
            height: 85px;
        }

        .core-card h3 {
            font-size: clamp(1.1rem, 2.4vw, 1.6rem);
        }
}

@media (max-width: 991px) {
    .core-hero {
        min-height: 80vh;
        background-position: center left;
    }

        .core-hero::after {
            background: rgba(0,0,0,.45);
        }

    .core-hero-content {
        width: 100%;
        margin: 0;
        padding: 2rem;
        text-align: center;
    }

    .core-benefits {
        padding: 3.5rem 1rem 5rem;
    }

        .core-benefits > .container > h2 {
            text-align: center;
            margin-bottom: 3rem;
        }
}

/* RESPONSIVE CELULAR */

@media (max-width: 575px) {
    .core-hero-content h1 {
        font-size: 2.6rem;
        letter-spacing: 2px;
    }

    .core-hero-content p,
    .core-hero-content span,
    .core-hero-content strong {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .core-benefits > .container > h2 {
        font-size: 1.3rem;
    }

    .core-grid {
        gap: 1.5rem;
    }

    .core-card,
    .core-card-center {
        max-width: 100%;
        min-height: 130px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        padding: 1.2rem;
        gap: 1rem;
        border-radius: 28px;
    }

        .core-card img {
            width: 60px;
            height: 60px;
        }

        .core-card h3 {
            font-size: 1rem;
            line-height: 1.2;
        }

    .core-login-btn {
        min-width: 100%;
        height: 68px;
        font-size: 1.1rem;
    }
}
