:root {
    /* Paleta principal — ajustá a gusto */
    --bg: #0f1113;
    /* fondo base */
    --bg-2: #121417;
    /* fondo tarjetas */
    --fg: #eaeef2;
    /* texto principal */
    --muted: #a5acb5;
    /* texto secundario */
    --brand: #23e44f;
    /* verde principal */
    --brand-2: #86ff8f;
    /* verde claro */
    --accent: #27c96d;
    /* acento */
    --danger: #ff5d5d;
    /* errores */
    --shadow: rgba(0, 0, 0, .5);
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    line-height: 1.6;
    /* textura/grano sutil sin imágenes */
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-position: 0 0, 25px 25px;
    background-size: 50px 50px;
}

/* Contenedor ancho */
.wrap {
    width: min(1200px, 92%);
    margin-inline: auto
}

/* Títulos estilo afiche */
.stencil {
    font-family: 'Black Ops One', system-ui;
    letter-spacing: .5px;
    text-transform: uppercase
}

.title-xl {
    font-size: clamp(2.2rem, 4.5vw + .5rem, 4.6rem);
    line-height: 1.05;
}

.title-md {
    font-size: clamp(1.2rem, 1.3vw + .9rem, 2.2rem)
}

/* Decoradores de texto verdes con grunge */
.ink {
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 0 rgba(0, 0, 0, .5));
    text-shadow: 0 0 .4px rgba(255, 255, 255, .15), 0 1px 0 rgba(0, 0, 0, .4);
}

/* Navbar */
header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: saturate(1.1) blur(6px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: linear-gradient(180deg, rgba(15, 17, 19, .75), rgba(15, 17, 19, .55));
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800
}

.logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: radial-gradient(120% 120% at 30% 20%, var(--brand-2), var(--brand));
    box-shadow: 0 6px 20px rgba(35, 228, 79, .25);
    font-family: 'Black Ops One';
    color: #0b0b0b;
    letter-spacing: .5px
}

.menu {
    display: flex;
    gap: 22px;
    align-items: center
}

.menu a {
    color: var(--fg);
    text-decoration: none;
    font-weight: 600;
    opacity: .85
}

.menu a:hover {
    opacity: 1
}

.cta {
    --p: 14px 18px;
    padding: var(--p);
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(35, 228, 79, .20), rgba(35, 228, 79, .05));
    box-shadow: inset 0 0 0 1px rgba(35, 228, 79, .35), 0 12px 30px rgba(35, 228, 79, .18);
    color: #dfffe7
}

.cta:hover {
    transform: translateY(-1px)
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--fg);
    font-size: 2rem;
    cursor: pointer;
    margin-left: auto;
    z-index: 100;
}

@media (max-width: 700px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--bg-2);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
        border-radius: 0 0 14px 14px;
        flex-direction: column;
        gap: 0;
        width: 80vw;
        max-width: 320px;
        padding: 18px 0;
        display: none;
    }

    .menu.show {
        display: flex;
    }

    .menu a,
    .cta {
        width: 100%;
        text-align: left;
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 1.08rem;
    }

    .menu a:last-child,
    .cta:last-child {
        border-bottom: none;
    }

    .nav {
        position: relative;
    }
}

/* Banner de evento con imagen */
.evento-banner {
    display: block;
    width: 100%;
    position: relative;
    z-index: 50;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.evento-banner img {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.evento-banner img:hover {
    transform: scale(1.04);
}

@media (max-width: 600px) {
    .evento-banner img {
        text-align: center;
        width: 95%;
        height: auto;
    }
}

/* Hero */
.hero {
    padding: clamp(48px, 6vw, 100px) 0 40px;
    position: relative
}

.hero .grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 40px
}

@media (max-width: 900px) {
    .hero .grid {
        grid-template-columns: 1fr;
    }
}

.hero-card {
    background: linear-gradient(180deg, rgba(36, 38, 44, .65), rgba(18, 20, 23, .75));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: clamp(18px, 2.2vw, 28px);
    box-shadow: 0 30px 60px var(--shadow);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .86rem;
    background: rgba(35, 228, 79, .18);
    border: 1px solid rgba(35, 228, 79, .35);
    color: #dfffe7
}

.kicker {
    font-weight: 800;
    opacity: .9;
    letter-spacing: .5px
}

.lead {
    font-size: clamp(1rem, 1.1vw + .6rem, 1.35rem);
    color: var(--fg);
    opacity: .95
}

.divider {
    height: 4px;
    width: 120px;
    background: linear-gradient(90deg, var(--brand), transparent);
    border-radius: 999px;
    margin: 18px 0 8px
}

/* Tarjetas generales */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 640px) {
    .cards {
        grid-template-columns: 1fr
    }
}

.card {
    background: var(--bg-2);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 18px 18px 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.card h3 {
    margin: 8px 0 6px
}

.card-contact {
    background: var(--bg-2);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 18px 18px 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
    width: 40vw;
}

@media (max-width: 640px) {
    .card-contact {
        width: 92vw;
    }

    input, textarea{
        width: 100%;
    }


}

.meta {
    color: var(--muted);
    font-size: .95rem
}

/* Ajuste general para evitar desbordes */
body,
html {
    overflow-x: hidden;
}

/* Sección seguridad / confianza */
.shield {
    width: 32px;
    height: 32px
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.513);
    font-weight: 800;
    padding: 8px 11px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: all 0.2s ease;
}

.badge:hover {
    box-shadow: 0 2px 9px var(--accent);
    color: var(--accent);
    border-color: var(--accent);
}

/* Lista de checks */
.check {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.check svg {
    flex: 0 0 20px
}

/* Footer */
footer {
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(18, 20, 23, 0.85), rgba(18, 20, 23, 0.97));
    padding: 40px 0;
    color: var(--blanco);
    font-family: 'Segoe UI', sans-serif;
}

.foot {
    display: flex;
    gap: 150px;
    justify-content: center;
    align-items: start;
}

.foot .brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.foot .brand img {
    display: block;
}

.foot small {
    color: var(--muted);
    font-size: 0.9rem;
}

.foot p.meta {
    font-size: 0.9rem;
    line-height: 1.5;
}

.foot h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.foot ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.foot ul li a {
    color: var(--blanco);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.foot ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

@media (max-width: 900px) {
    .foot {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .foot .brand {
        flex-direction: row;
    }
}


/* Formularios */
.field {
    display: grid;
    gap: 8px
}

input,
textarea {
    background: #0b0d0f;
    color: var(--fg);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit
}

textarea {
    min-height: 120px;
    resize: vertical
}

.btn {
    cursor: pointer;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 800;
    color: #0a0d0a;
    background: linear-gradient(180deg, var(--brand-2), var(--brand));
    box-shadow: 0 12px 30px rgba(35, 228, 79, .3)
}

.btn:hover {
    transform: translateY(1px)
}

.shapes-container {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: center;
    height: 250px;
}

.shape {
    position: absolute;
    animation: float 4s ease-in-out infinite;
    z-index: 1;
    /* detrás del logo */
}

.shape1 {
    animation-delay: 0s;
}

.shape2 {
    animation-delay: 1s;
}

.shape3 {
    animation-delay: 2s;
}

.company-logo {
    position: relative;
    width: 120px;
    top: 110%;
    /* ajusta según tu diseño */
    height: auto;
    z-index: 2;
    /* delante de las figuras */
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
    /* pequeño desfase para que no vaya exactamente igual */
}

@media (max-width: 600px) {
    .shapes-container {
        margin-bottom: 50px;
    }

    .company-logo {
        width: 90px;
        top: 80%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* Sombra de laptop */
.laptop {
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, .5));
    max-width: 100%
}

/* WhatsApp flotante opcional */
.wa {
    position: fixed;
    right: 38px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #0a0d0a;
    background: linear-gradient(180deg, var(--brand-2), var(--brand));
    box-shadow: 0 14px 30px rgba(35, 228, 79, .35);
    text-decoration: none;
    font-weight: 900
}

@media (max-width: 600px) {
    .wa {
        right: 18px;
        width: 48px;
        height: 48px;
        font-size: 0.9rem;
    }
}

.wa:hover {
    transform: translateY(-2px)
}

/* Animaciones sutiles */
.fade-up {
    opacity: 0;
    transform: translateY(8px);
    animation: rise .8s ease .1s forwards
}

@keyframes rise {
    to {
        opacity: 1;
        transform: none
    }
}