:root {
    --bg: #020617;
    --card: #0f172a;
    --accent: #22c55e;
    --text: #e5e7eb;
    --muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

body {
    background:
        radial-gradient(circle at 15% 20%, rgba(45, 212, 191, 0.22), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(34, 211, 238, 0.18), transparent 40%),
        #020617;
    color: #e5e7eb;
}


.hero {
    padding: 80px 20px 50px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    color: var(--muted);
    font-size: 1.1rem;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: linear-gradient(180deg, #0f172a, #020617);
    border-radius: 18px;
    padding: 28px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
}

.badge {
    display: inline-block;
    background: rgba(34, 197, 94, .15);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .75rem;
    margin-bottom: 12px;
}

.card h2 {
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    margin-bottom: 20px;
}

.card ul li::before {
    content: "✓ ";
    color: var(--accent);
}

.card button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    font-weight: bold;
    cursor: pointer;
}

/* 📱 MOBILE AJUSTES */
@media (max-width: 480px) {
    .hero {
        padding-top: 60px;
    }

    .card {
        padding: 22px;
    }
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
    font-size: .9rem;
}

.btn {
    display: block;
    margin-top: 20px;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #000806;
    font-weight: bold;
    text-decoration: none;
    transition: transform .2s ease, filter .2s ease;
}

.btn:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 9999;

    display: none;
    max-width: 980px;
    margin: 0 auto;

    border-radius: 18px;
    padding: 18px 18px 16px;

    background: rgba(20, 22, 26, .75);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    display: block;
    animation: cookieIn .25s ease-out;
}

@keyframes cookieIn {
    from {
        transform: translateY(14px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-x {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 38px;
    height: 38px;

    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .85);

    cursor: pointer;
}

.cookie-x:hover {
    background: rgba(255, 255, 255, .10);
}

.cookie-content {
    display: grid;
    gap: 10px;
    padding-right: 44px;
}

.cookie-title {
    margin: 0;
    font-weight: 800;
    font-size: 18px;
    color: rgba(255, 255, 255, .95);
}

.cookie-text {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.35;
    font-size: 14px;
}

.cookie-link {
    color: #63f1c8;
    text-decoration: underline;
    font-weight: 700;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.cookie-btn {
    border: 0;
    cursor: pointer;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 800;
    font-size: 14px;

    background: linear-gradient(90deg, #35e6b7, #35c0ff);
    color: #071012;
    box-shadow: 0 14px 40px rgba(53, 230, 183, .18);
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn.ghost {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .90);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: none;
}

.cookie-btn.ghost:hover {
    background: rgba(255, 255, 255, .11);
}

@media (max-width: 520px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
    }
}