* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #f5f7fb 0%, #eef2f7 100%);
    color: #171a21;
    margin-top: 35px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1150px, calc(100% - 32px));
    margin: 0 auto;
}

[id] {
    scroll-margin-top: 120px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251, 247, 242, 0.88);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(120, 98, 74, 0.10);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(23, 26, 33, 0.08);
    background: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #51607a;
    transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
    border-color: rgba(23, 26, 33, 0.14);
    color: #171a21;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.35));
}

.hero {
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

    .hero::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 24px;
        width: min(760px, 90%);
        height: 420px;
        transform: translateX(-50%);
        background: radial-gradient(circle at 30% 35%, rgba(0, 229, 255, 0.10), transparent 32%), radial-gradient(circle at 70% 30%, rgba(183, 197, 255, 0.16), transparent 34%), radial-gradient(circle at 55% 75%, rgba(214, 221, 247, 0.22), transparent 38%);
        filter: blur(18px);
        z-index: -1;
        pointer-events: none;
    }

.pill {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(23, 26, 33, 0.08);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #51607a;
}

.hero-tags {
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a8596;
}

.tag-geek {
    color: #00e5ff;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.45);
}

.tag-home {
    color: #a4825e;
}

.hero h1 {
    margin: 22px auto 0;
    max-width: 850px;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    opacity: 0;
    transform: translateY(18px);
    animation: heroTitleIn .8s ease .1s forwards;
}

.grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

    .grid::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 10%;
        bottom: 10%;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(23, 26, 33, 0.15), transparent);
        transform: translateX(-50%);
    }

.card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 32px;
    background: white;
    border: 1px solid rgba(23, 26, 33, 0.08);
    box-shadow: 0 18px 50px rgba(20, 29, 45, 0.08);
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease;
    animation: cardInLeft .7s ease both, floatCard 5.5s ease-in-out .8s infinite;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 60px rgba(20, 29, 45, 0.12);
        animation-play-state: paused;
    }

    .card small {
        display: inline-block;
        margin-bottom: 14px;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.22em;
    }

    .card h3 {
        margin: 0;
        font-size: clamp(1.8rem, 4vw, 2.7rem);
        line-height: 0.95;
        text-transform: uppercase;
    }

    .card .btn {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 22px;
        border-radius: 16px;
        font-size: 13px;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 0.18em;
        align-self: flex-start;
    }

.card-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
}

    .card-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        line-height: 1.5;
        opacity: 0;
        transform: translateY(6px);
        animation: featureFade .6s ease forwards;
    }

        .card-features li:nth-child(1) {
            animation-delay: .15s;
        }

        .card-features li:nth-child(2) {
            animation-delay: .3s;
        }

        .card-features li:nth-child(3) {
            animation-delay: .45s;
        }

.feature-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

    .feature-icon svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        transition: transform .2s ease, color .2s ease, filter .2s ease;
    }

.card-geek {
    background: linear-gradient(180deg, #111520 0%, #171c29 100%);
    color: white;
    border-color: rgba(0, 229, 255, 0.18);
    box-shadow: 0 18px 50px rgba(0, 229, 255, 0.08);
    cursor: pointer;
}

    .card-geek::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: 28px;
        background: linear-gradient(135deg, rgba(0, 229, 255, 0.22), rgba(255, 43, 214, 0.10), transparent 65%);
        opacity: 0;
        transition: opacity .3s ease;
        pointer-events: none;
        z-index: 0;
    }

    .card-geek::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle 140px at var(--mx, 50%) var(--my, 50%), rgba(0, 229, 255, 0.14), transparent 60%);
        opacity: 0;
        transition: opacity .25s ease;
        pointer-events: none;
        z-index: 0;
    }

    .card-geek > * {
        position: relative;
        z-index: 1;
    }

    .card-geek small {
        color: #74efff;
    }

    .card-geek:hover {
        box-shadow: 0 25px 70px rgba(0, 229, 255, 0.25), 0 0 36px rgba(0, 229, 255, 0.12);
    }

        .card-geek:hover::before,
        .card-geek:hover::after {
            opacity: 1;
        }

    .card-geek .btn {
        color: #00e5ff;
        border: 1px solid rgba(0, 229, 255, 0.45);
        background: rgba(0, 229, 255, 0.08);
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.12);
    }

    .card-geek:hover .btn {
        box-shadow: 0 0 24px rgba(0, 229, 255, 0.22);
    }

    .card-geek .card-features li:hover .feature-icon svg {
        color: #00e5ff;
        transform: scale(1.15);
        filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.6));
    }

.card-deco {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: cardInRight .7s ease both, floatCard 5.5s ease-in-out .8s infinite;
    background: linear-gradient(180deg, #f4efe7 0%, #e6d7c3 100%);
    border-color: rgba(160, 130, 95, 0.22);
    box-shadow: 0 22px 60px rgba(160, 130, 95, 0.18);
}

    .card-deco::before {
        content: "";
        position: absolute;
        inset: -20%;
        background: radial-gradient(circle at 50% 40%, rgba(255, 210, 150, 0.35), transparent 60%);
        opacity: .35;
        animation: homeGlow 6s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
    }

    .card-deco::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 28px;
        background: radial-gradient(circle at 20% 25%, rgba(160, 130, 95, 0.06) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(160, 130, 95, 0.05) 0%, transparent 45%), repeating-linear-gradient( 0deg, rgba(160, 130, 95, 0.035) 0px, rgba(160, 130, 95, 0.035) 1px, transparent 1px, transparent 6px );
        pointer-events: none;
        opacity: .6;
        z-index: 0;
    }

    .card-deco > * {
        position: relative;
        z-index: 1;
    }

    .card-deco small {
        color: #8f7253;
    }

    .card-deco .btn {
        color: #7d6246;
        border: 1px solid rgba(143, 114, 83, 0.22);
        background: rgba(255, 255, 255, 0.72);
        box-shadow: 0 8px 20px rgba(120, 98, 74, 0.08);
    }

    .card-deco .card-features li:hover .feature-icon svg {
        color: #a4825e;
        transform: scale(1.1);
    }

.section {
    padding: 40px 0 80px;
}

.section-head {
    text-align: center;
    margin-bottom: 28px;
}

.section-kicker {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 26, 33, 0.08);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #607084;
}

.section-title {
    margin: 16px 0 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.section-subtitle {
    margin: 14px auto 0;
    max-width: 680px;
    color: #607084;
    line-height: 1.7;
    font-size: 16px;
}

.mini-grid,
.products-grid,
.steps-grid {
    display: grid;
    gap: 20px;
    margin-top: 28px;
}

.mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.mini-card,
.product-card,
.step-card,
.socials-card,
.footer-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 26, 33, 0.08);
    box-shadow: 0 12px 35px rgba(20, 29, 45, 0.05);
}

.mini-card,
.step-card,
.socials-card,
.footer-card {
    border-radius: 24px;
}

.mini-card {
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(20, 29, 45, 0.04);
}

.mini-icon,
.step-number {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
    border: 1px solid rgba(23, 26, 33, 0.08);
    color: #50627a;
    font-weight: 800;
}

.mini-icon {
    flex: 0 0 44px;
    box-shadow: 0 8px 20px rgba(68, 93, 176, 0.08);
    color: #5e6f89;
}

    .mini-icon svg {
        width: 22px;
        height: 22px;
        display: block;
    }

.mini-content {
    min-width: 0;
}

.mini-card h4,
.product-body h4,
.step-card h4 {
    margin: 0;
    font-size: 18px;
}

.mini-card p,
.product-body p,
.step-card p,
.socials-card p,
.footer-links a,
.footer-links span {
    color: #607084;
    line-height: 1.6;
    font-size: 15px;
}

.mini-card p,
.step-card p {
    margin: 10px 0 0;
}

.products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    background: rgba(255, 255, 255, 0.78);
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(20, 29, 45, 0.08);
    }

.product-media {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

.product-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

    .product-media.geek {
        background: radial-gradient(circle at 30% 35%, rgba(0, 229, 255, 0.28), transparent 28%), radial-gradient(circle at 72% 30%, rgba(255, 43, 214, 0.2), transparent 24%), linear-gradient(180deg, #111520 0%, #191f2d 100%);
    }

    .product-media.deco {
        background: radial-gradient(circle at 50% 35%, rgba(255, 210, 150, 0.35), transparent 24%), linear-gradient(180deg, #f4ede0 0%, #e2c9a0 100%);
    }

.product-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(23, 26, 33, 0.08);
    color: #4f5b6d;
}

.product-body {
    padding: 18px 18px 20px;
}

    .product-body p {
        margin: 10px 0 0;
        font-size: 14px;
    }

.product-meta {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.product-price {
    font-size: 15px;
    font-weight: 800;
    color: #171a21;
}

.product-link {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #4f5b6d;
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
    padding: 24px;
    box-shadow: 0 10px 30px rgba(20, 29, 45, 0.04);
}

.step-number {
    margin-bottom: 16px;
    font-size: 14px;
}

.socials-wrap {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

.socials-card {
    width: min(860px, 100%);
    padding: 28px;
    text-align: center;
    border-radius: 28px;
}

    .socials-card h3 {
        margin: 0;
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        letter-spacing: -0.03em;
    }

    .socials-card p {
        margin: 12px auto 0;
        max-width: 620px;
        line-height: 1.7;
        font-size: 16px;
    }

.socials-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(23, 26, 33, 0.08);
    box-shadow: 0 8px 20px rgba(20, 29, 45, 0.04);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #4f5b6d;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .social-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(20, 29, 45, 0.08);
    }

    .social-link svg {
        width: 18px;
        height: 18px;
        display: block;
    }

.social-instagram { color: rgb(225, 48, 108); }
.social-tiktok { color: #1a1a1a; }
.social-whatsapp { color: rgb(37, 211, 102); }

/* === Botón flotante WhatsApp === */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 15px;
    height: 58px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    overflow: hidden;
    max-width: 58px;
    transition: max-width .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.whatsapp-float svg {
    flex-shrink: 0;
}

.whatsapp-float:hover {
    max-width: 260px;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float-text {
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.02em;
    opacity: 0;
    transition: opacity .15s ease;
}

.whatsapp-float:hover .whatsapp-float-text {
    opacity: 1;
    transition: opacity .2s ease .15s;
}

.site-footer {
    padding: 32px 0 28px;
    border-top: 1px solid rgba(23, 26, 33, 0.08);
    margin-top: 40px;
}

.footer-card {
    padding: 28px;
    border-radius: 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.footer-col h4 {
    margin: 0 0 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #50627a;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a,
    .footer-links span {
        transition: color .2s ease, transform .2s ease, text-shadow .2s ease;
    }

        .footer-links a:hover {
            color: #00e5ff;
            transform: translateX(3px);
            text-shadow: 0 0 8px rgba(0, 229, 255, 0.35);
        }

        .footer-links a[href*="home"]:hover {
            color: #a4825e;
            text-shadow: 0 0 6px rgba(164, 130, 94, 0.35);
        }

.nav-icon-home {
    display: inline-block;
    transition: transform .2s ease, filter .2s ease;
}

.footer-links a[href*="home"]:hover .nav-icon-home {
    transform: scale(1.15);
    filter: drop-shadow(0 0 4px rgba(164, 130, 94, 0.45));
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: #6b7688;
    font-size: 14px;
    margin-top: 20px;
}

@keyframes heroTitleIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cardInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes featureFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeGlow {
    0% {
        transform: scale(1);
        opacity: .25;
    }

    50% {
        transform: scale(1.05);
        opacity: .45;
    }

    100% {
        transform: scale(1);
        opacity: .25;
    }
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .card {
        animation: none;
    }
}

@media (max-width: 800px) {
    .grid::before {
        display: none;
    }

    .grid,
    .mini-grid,
    .products-grid,
    .steps-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .socials-links {
        justify-content: stretch;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        justify-content: center;
    }

    .site-footer {
        padding-bottom: 96px;
    }
}
