﻿/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0e0e11;
    color: #ffffff;
    line-height: 1.6;
}

.hero {
    min-height: 100vh;
    background: linear-gradient( 90deg, rgba(5, 10, 25, 0.95) 0%, rgba(5, 10, 25, 0.85) 45%, rgba(5, 10, 25, 0.4) 100% ), url('/images/hero.png');
    background-size: cover;
    background-position: right center;
    color: white;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #4ef0c7;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.hero-content {
    max-width: 600px;
}

    .hero-content h1 {
        font-size: 56px;
        font-weight: 800;
        line-height: 1.1;
    }

        .hero-content h1 span {
            color: #4ef0c7;
        }

    .hero-content p {
        margin-top: 20px;
        font-size: 18px;
        color: #cfd8dc;
    }


.btn-primary {
    background: #4ef0c7;
    color: #000;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.btn-secondary {
    display: inline-block;
    margin-top: 30px;
    border: 2px solid #4ef0c7;
    color: #4ef0c7;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}


    .btn-primary:hover {
        background: #2dd4bf;
    }

.btn-secondary {
    border: 2px solid #5eead4;
    color: #5eead4;
}

    .btn-secondary:hover {
        background: #5eead4;
        color: #0e0e11;
    }

section {
    padding: 80px 30px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #16161d;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(94,234,212,0.05);
}

.solution p {
    max-width: 700px;
    margin: auto;
    text-align: center;
    font-size: 1.1rem;
    color: #cbd5f5;
}

.cta {
    background: linear-gradient(135deg, #5eead4, #22d3ee);
    color: #0e0e11;
    border-radius: 30px;
    text-align: center;
}

    .cta p {
        margin: 20px 0 30px;
    }

footer {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
}


section.alt {
    background: radial-gradient(circle at top, #1a1a23, #0e0e11);
    border-radius: 40px;
}


.card {
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(94,234,212,0.08);
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(94,234,212,0.15);
        border-color: #5eead4;
    }
     */

.hero h1 {
    animation: fadeUp 1s ease forwards;
}

.hero p {
    animation: fadeUp 1.4s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0e0e11;
    color: #ffffff;
    line-height: 1.6;
}

/* HERO */

.hero {
    min-height: 100vh;
    background: linear-gradient( 90deg, rgba(5,10,25,0.7) 0%, rgba(5,10,25,0.5) 45%, rgba(5,10,25,0.2) 100% ), url('../images/heroscalitec.png');
    background-size: cover;
    background-position: right center;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.hero-content {
    max-width: 600px;
}

    .hero-content h1 {
        font-size: 46px;
        font-weight: 800;
        line-height: 1.1;
    }

        .hero-content h1 span {
            color: #5eead4;
        }

    .hero-content p {
        margin-top: 20px;
        font-size: 18px;
        color: #cfd8dc;
    }



.logo svg {
    display: block;
}

.hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom : 30px;
}



.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.card {
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-6px);
    }













/* BOTONES */

.btn-primary {
    background: #5eead4;
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-primary:hover {
        background: #2dd4bf;
    }

.btn-secondary {
    display: inline-block;
    margin-top: 30px;
    border: 2px solid #5eead4;
    color: #5eead4;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-secondary:hover {
        background: #5eead4;
        color: #0e0e11;
    }

/* SECCIONES */

section {
    padding: 90px 30px;
    max-width: 1100px;
    margin: auto;
    position: relative;
}

    section::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 2px;
        background: linear-gradient(to right, transparent, #5eead4, transparent);
    }

    section.alt {
        background: radial-gradient(circle at top, #1a1a23, #0e0e11);
        border-radius: 40px;
    }

/* TITULOS */

h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    text-align: center;
}

    h2 span {
        color: #5eead4;
    }

/* GRID + CARDS */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.card {
    background: linear-gradient(145deg, #16161d, #1c1c25);
    padding: 35px 25px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid rgba(94,234,212,0.1);
    transition: all 0.35s ease;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(94,234,212,0.15);
        border-color: #5eead4;
    }

    .card.highlight {
       /* border: 2px solid #5eead4; */
        background: linear-gradient(160deg, #162a25, #16161d);
    }

/* SOLUCION */

.solution-box {
    background: #16161d;
    padding: 60px;
    border-radius: 35px;
    text-align: center;
    border: 1px solid rgba(94,234,212,0.15);
}

    .solution-box p {
        font-size: 1.15rem;
        color: #cbd5f5;
        max-width: 700px;
        margin: auto;
    }

/* CTA */

.cta {
    background: linear-gradient(135deg, #5eead4, #22d3ee);
    color: #0e0e11;
    border-radius: 40px;
    text-align: center;
}

    .cta p {
        margin: 20px 0 35px;
        font-size: 1.1rem;
    }

/* FOOTER */

footer {
    text-align: center;
    padding: 35px;
    color: #94a3b8;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .hero {
        padding: 40px;
    }

    .hero-content h1 {
        font-size: 30px;
    }
}

.logo img {
    height: 80px;
    width: 210px;
}


.plans {
    text-align: center;
}

.plans-subtitle {
    color: #cbd5f5;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.plan-card {
    background: #16161d;
    padding: 40px 30px;
    border-radius: 30px;
    position: relative;
    border: 1px solid rgba(94,234,212,0.1);
    transition: all 0.3s ease;
}

    .plan-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 70px rgba(94,234,212,0.15);
        border-color: #5eead4;
    }

    .plan-card h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

.plan-desc {
    color: #94a3b8;
    margin-bottom: 25px;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 30px;
}

    .plan-card ul li {
        margin: 12px 0;
        color: #e5e7eb;
    }

.recommended {
    border: 2px solid #5eead4;
    background: linear-gradient(160deg, #162a25, #16161d);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #5eead4;
    color: #0e0e11;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}



/* Sección evolución */

.plans-evolution {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.evolution-box {
    max-width: 750px;
    background: linear-gradient(135deg, #5eead4, #1E40AF);
    color: white;
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .evolution-box h4 {
        font-size: 22px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .evolution-box p {
        font-size: 16px;
        line-height: 1.6;
        opacity: 0.95;
    }

    .evolution-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    }




