:root {
    --yellow: #ffd500;
    --green: #136316;
    --dark: #0d2413;
    --white: #ffffff;
    --text: #111111;
    --muted: #5f6368;
    --whatsapp: #25d366;
    --radius: 14px;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 42px 20px;
    font-family: 'Montserrat', sans-serif;
    background:
        linear-gradient(
            rgba(5, 30, 10, 0.25),
            rgba(5, 30, 10, 0.7)
        ),
        url('fondo-retica.webp') top center / cover no-repeat,
        var(--green);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
    color: var(--white);
}

.wrapper {
    width: 100%;
    max-width: 430px;
}

.header {
    text-align: center;
    margin-top: 10px;
    padding: 0 8px;
}

.logo img {
    width: min(300px, 86%);
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
}

.divider {
    width: 64px;
    height: 4px;
    margin: 14px auto 18px;
    border-radius: 999px;
    background: var(--yellow);
    box-shadow: 0 0 16px rgba(255, 213, 0, 0.45);
}

.text {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.text b {
    color: var(--yellow);
}

.links {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.card,
.whatsapp {
    min-height: 74px;
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.card {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    box-shadow: var(--shadow);
}

.card:hover,
.whatsapp:hover {
    transform: translateY(-3px);
}

.card:hover {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.left,
.whatsapp-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #f4f6f8;
}

.icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.title {
    font-size: 15px;
    font-weight: 800;
    color: #101010;
}

.subtitle {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.35;
    color: var(--muted);
}

.arrow,
.whatsapp > div:last-child {
    margin-left: 12px;
    font-size: 24px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.35);
}

.whatsapp {
    margin-top: 6px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(20, 155, 73, 0.95));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.whatsapp img {
    width: 28px;
    height: 28px;
}

.whatsapp small {
    color: rgba(255, 255, 255, 0.88);
}

.whatsapp > div:last-child {
    color: rgba(255, 255, 255, 0.75);
}

.stats-box {
    margin-top: 18px;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid rgba(255, 213, 0, 0.32);
    background: rgba(6, 32, 16, 0.72);
    backdrop-filter: blur(8px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-item {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.stats-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    display: grid;
    place-items: center;
    background: rgba(255, 213, 0, 0.1);
    box-shadow: 0 0 14px rgba(255, 213, 0, 0.22);
}

.stats-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.stats-title {
    font-size: 11px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--white);
}

.stats-yellow {
    color: var(--yellow);
}

.stats-desc {
    font-size: 11px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.78);
}

.stats-divider {
    width: 1px;
    height: 48px;
    flex: 0 0 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer span {
    color: var(--yellow);
    font-weight: 800;
}

@media (max-width: 380px) {
    body {
        padding: 30px 14px;
    }

    .card,
    .whatsapp {
        padding: 13px 14px;
    }

    .subtitle {
        font-size: 11px;
    }

    .stats-box {
        padding: 13px;
        gap: 9px;
    }

    .stats-item {
        gap: 8px;
    }

    .stats-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .stats-title,
    .stats-desc {
        font-size: 10px;
    }
}