* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Figtree', sans-serif; }

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 24px;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(60, 0, 0, 0.55);
    z-index: 0;
}

.home-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    background: rgba(110, 8, 8, 0.82);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    padding: 56px 52px;
    text-align: center;
    color: #fff;
}

.home-logo {
    width: 210px;
    max-width: 70%;
    height: auto;
    margin: 0 auto 28px;
    display: block;
}

.home-card h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 14px;
}

.home-sub {
    color: #f5c6c6;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.home-desc {
    color: #f3dede;
    font-size: 14px;
    line-height: 1.75;
    max-width: 440px;
    margin: 0 auto 34px;
}

.home-acciones {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    min-width: 170px;
}

.btn-primario {
    background: #fff;
    color: #9b1c1c;
    border: 2px solid #fff;
}

.btn-primario:hover { background: #f5c6c6; border-color: #f5c6c6; }

.btn-secundario {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secundario:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

.acceso-seguro {
    color: #f5c6c6;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.home-footer {
    color: rgba(245, 198, 198, 0.7);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 520px) {
    .home-card { padding: 40px 26px; }
    .home-card h1 { font-size: 24px; }
    .btn { width: 100%; }
}
