/* ============================================================================
 *  OBRAS ANGIRÜ - BITÁCORA DE OBRA
 *  Landing Page Styles
 *  Archivo: child/css/landpage.css
 *  Versión: 3.3.0
 *  ============================================================================ */

/* ============================================================================
 *  1. CONTENEDOR PRINCIPAL
 *  ============================================================================ */
.obras-landing {
    margin: 40px auto 0;
    max-width: 1400px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(34, 113, 177, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ============================================================================
 *  2. LOGO Y TÍTULOS
 *  ============================================================================ */
.obras-landing-logo {
    display: block;
    margin: 0 auto 40px;
    text-align: center;
}

.obras-landing-logo img {
    display: block;
    max-width: min(280px, 100%);
    height: auto;
    margin: 0 auto;
}

.obras-landing h1,
.obras-landing .subtitle {
    text-align: center;
}

/* ============================================================================
 *  3. BOTONES ACCEDER / REGISTRARSE
 *  ============================================================================ */
.obras-landing-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 75%;
    max-width: 900px;
    margin: 0 auto 35px;
}

.obras-landing-btn {
    box-sizing: border-box;
    flex: 0 1 434px;
    max-width: 434px;
    max-height: 110px;
    max-height: 98px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px 24px;

    font-size: 1.3em;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;

    border-radius: 8px;
    border: none;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* primaria */
.obras-landing-btn.login {
    background: #2271b1;
    color: #fff;
}

.obras-landing-btn.login:hover {
    background: #135e96;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* secundaria */
.obras-landing-btn.register {
    background: #6c757d;
    color: #fff;
}

.obras-landing-btn.register:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================================================
 *  4. GRID FEATURES (6 BLOQUES)
 *  ============================================================================ */
.obras-landing-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1350px;
    margin: 25px auto 0;
}

/* variante especial */
.obras-feature-alien {
    background: #9b59b6;
}

.obras-feature-alien:hover {
    background: #8e44ad;
}

/* ============================================================================
 *  5. FOOTER
 *  ============================================================================ */
.obras-landing-footer {
    margin-top: 40px;
    text-align: center;
    color: #888;
}

/* ============================================================================
 *  6. RESPONSIVE
 *  ============================================================================ */

/* tablet */
@media (max-width: 1024px) {
    .obras-landing-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .obras-feature {
        aspect-ratio: auto;
        min-height: 240px;
    }
}


@media (max-width: 768px) {
    .obras-landing {
        padding: 30px 15px;
    }

    .obras-landing-logo img {
        max-width: min(160px, 100%);
    }

    /* mismo ancho útil para los 8 botones */
    .obras-landing-buttons,
    .obras-landing-features {
        width: 100%;
        max-width: 394px;
        margin-left: auto;
        margin-right: auto;
    }

    .obras-landing-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 35px;
    }

    .obras-landing-btn {
        flex: none;
        width: 100%;
        max-width: 394px;
        min-height: 0;
        aspect-ratio: 434 / 112;
        padding: 0 16px;
        font-size: 1.1em;
        line-height: 1.2;
    }

    .obras-landing-features {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }

    .obras-feature {
        box-sizing: border-box;
        width: 100%;
        max-width: 394px;
        min-height: 0;
        aspect-ratio: 434 / 343;
        margin: 0 auto;
    }
}
