:root {
    --bg-void: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --primary-accent: #2c2c2c;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --neon-green: #00ff88;
    --neon-teal: #00ccff;
    --neon-purple: #bd00ff;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-void);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Mesh */
.mesh-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatBlob 20s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #00ff88;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #00ccff;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #7000ff;
    top: 40%;
    left: 30%;
    animation-delay: -10s;
    opacity: 0.2;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, 50px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    flex-grow: 1;
    padding-top: 140px;
    padding-bottom: 80px;
}

.section-padding {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

/* HEADER STYLES (Copied for consistency) */
header {
    padding: 20px 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon-teal);
}

.btn-primary {
    background: var(--neon-teal);
    color: black !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.3);
    background: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}


/* HERO */
.page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-title span {
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(189, 0, 255, 0.4);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* WEB TYPES SPLIT */
.web-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.web-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.web-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.web-card.institucional {
    border-top: 2px solid var(--neon-teal);
}

.web-card.ecommerce {
    border-top: 2px solid var(--neon-purple);
}

.icon-wrapper {
    font-size: 3rem;
    margin-bottom: 25px;
}

.institucional .icon-wrapper {
    color: var(--neon-teal);
}

.ecommerce .icon-wrapper {
    color: var(--neon-purple);
}

.web-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
}

.web-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: var(--neon-green);
    font-size: 0.9rem;
}

.badge-new {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon-green);
    color: black;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* BUTTONS */
.btn-neon {
    background: var(--neon-teal);
    color: black;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: 0.3s;
    width: 100%;
    text-align: center;
}

.btn-neon:hover {
    background: white;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.4);
    transform: translateY(-2px);
}

.btn-ecommerce {
    background: var(--neon-purple);
    color: white;
}

.btn-ecommerce:hover {
    background: white;
    color: black;
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.4);
}

/* MI PRIMERA WEB SECTION */
.info-section {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.section-title span {
    color: var(--neon-green);
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-muted);
    line-height: 1.6;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-box {
    background: rgba(0, 0, 0, 0.4);
    border: var(--glass-border);
    padding: 30px;
    border-radius: 16px;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.info-box h3 i {
    color: var(--neon-teal);
}

.info-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.note {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
    display: block;
    margin-top: 10px;
}

/* FINAL CTA */
.final-cta-box {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 60px 20px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.final-cta-box p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.large-btn {
    width: auto;
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .web-types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .web-card {
        padding: 30px;
        align-items: center;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: black;
        flex-direction: column;
        justify-content: center;
        z-index: 1000;
        transition: 0.4s;
    }

    .nav-links.menu-open {
        right: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links .btn-primary {
        background: transparent !important;
        color: white !important;
        font-size: 1.5rem !important;
        padding: 0 !important;
    }

    .page-title {
        font-size: 3rem;
    }
}