* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --azul: #2478b8;
    --turquesa: #4fb6aa;
    --texto: #1f2d3d;
    --suave: #f4fbfd;
    --blanco: #ffffff;
    --sombra: 0 20px 55px rgba(20, 70, 110, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--texto);
    background:
        radial-gradient(circle at top left, rgba(79, 182, 170, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(36, 120, 184, 0.18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f4fbfd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.pagina-espera {
    width: min(980px, 100%);
}

.tarjeta-espera {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(36, 120, 184, 0.12);
    border-radius: 30px;
    box-shadow: var(--sombra);
    padding: 46px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tarjeta-espera::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36, 120, 184, 0.08), rgba(79, 182, 170, 0.08));
    pointer-events: none;
}

.contenido {
    position: relative;
    z-index: 1;
}

.logo {
    width: min(220px, 70%);
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 28px;
}

.etiqueta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(36, 120, 184, 0.1);
    color: var(--azul);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.etiqueta span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--turquesa);
    box-shadow: 0 0 0 6px rgba(79, 182, 170, 0.18);
}

h1 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.08;
    color: var(--azul);
    margin-bottom: 18px;
}

.texto-principal {
    max-width: 720px;
    margin: 0 auto 26px;
    color: #425466;
    font-size: 1.12rem;
    line-height: 1.7;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 34px 0;
}

.info-card {
    background: var(--blanco);
    border: 1px solid rgba(36, 120, 184, 0.12);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(20, 70, 110, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(20, 70, 110, 0.13);
    border-color: rgba(79, 182, 170, 0.45);
}

.info-card h2 {
    font-size: 1.05rem;
    color: var(--azul);
    margin-bottom: 8px;
}

.info-card p {
    color: #5c6f82;
    font-size: 0.96rem;
    line-height: 1.55;
}

.acciones {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid transparent;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.boton:hover {
    transform: translateY(-3px);
}

.boton-principal {
    color: #ffffff;
    background: linear-gradient(135deg, var(--azul), var(--turquesa));
    box-shadow: 0 12px 26px rgba(36, 120, 184, 0.25);
}

.boton-secundario {
    color: var(--azul);
    background: #ffffff;
    border-color: rgba(36, 120, 184, 0.22);
}

.pie {
    margin-top: 28px;
    color: #6c7c8c;
    font-size: 0.92rem;
}

@media (max-width: 760px) {
    body {
        padding: 18px;
    }

    .tarjeta-espera {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .boton {
        width: 100%;
    }
}
