
        /* ==============================
           CONFIGURACIÓN GENERAL
        ============================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: #07111f;
            color: #ffffff;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }


        /* ==============================
           HEADER
        ============================== */

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;

            background: rgba(7, 17, 31, 0.92);
            backdrop-filter: blur(12px);

            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        nav {
            height: 75px;

            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}
        }

        .logo span {
            color: #00c8ff;
        }

        .menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .menu a {
            color: #dbeafe;
            font-size: 15px;
            transition: 0.3s;
        }

        .menu a:hover {
            color: #00c8ff;
        }


        /* ==============================
           HERO
        ============================== */

        .hero {
            min-height: 100vh;

            display: flex;
            align-items: center;

            padding-top: 100px;

            background:
                radial-gradient(
                    circle at 80% 20%,
                    rgba(0,200,255,0.18),
                    transparent 35%
                ),
                radial-gradient(
                    circle at 20% 80%,
                    rgba(37,99,235,0.15),
                    transparent 35%
                );
        }

        .hero-content {
            display: grid;

            grid-template-columns: 1.1fr 0.9fr;

            gap: 70px;

            align-items: center;
        }

        .hero-text small {
            color: #00c8ff;

            font-size: 15px;

            font-weight: bold;

            letter-spacing: 2px;

            text-transform: uppercase;
        }

        .hero-text h1 {
            font-size: 58px;

            line-height: 1.08;

            margin: 20px 0;
        }

        .hero-text h1 span {
            color: #00c8ff;
        }

        .hero-text p {
            color: #9fb1c7;

            font-size: 18px;

            max-width: 600px;

            margin-bottom: 35px;
        }

        .buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;

            padding: 14px 25px;

            border-radius: 8px;

            font-weight: bold;

            transition: 0.3s;
        }

        .btn-primary {
            background: #00c8ff;
            color: #03111f;
        }

        .btn-primary:hover {
            background: #00a9d6;
            transform: translateY(-3px);
        }

        .btn-secondary {
            border: 1px solid #334155;
            color: #ffffff;
        }

        .btn-secondary:hover {
            border-color: #00c8ff;
            color: #00c8ff;
        }


        /* ==============================
           HERO CARD
        ============================== */

        .code-card {
            background: #0c1a2b;

            border: 1px solid #1e3a56;

            border-radius: 18px;

            padding: 25px;

            box-shadow:
                0 25px 70px rgba(0,0,0,0.4);
        }

        .code-header {
            display: flex;

            gap: 8px;

            margin-bottom: 25px;
        }

        .dot {
            width: 11px;
            height: 11px;

            border-radius: 50%;

            background: #64748b;
        }

        .code {
            background: #020617;

            padding: 25px;

            border-radius: 10px;

            font-family: Consolas, monospace;

            color: #a5f3fc;

            font-size: 14px;

            line-height: 2;
        }

        .code .blue {
            color: #38bdf8;
        }

        .code .green {
            color: #86efac;
        }

        .code .purple {
            color: #c4b5fd;
        }


        /* ==============================
           SECCIONES
        ============================== */

        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;

            max-width: 700px;

            margin: 0 auto 60px;
        }

        .section-title h2 {
            font-size: 40px;

            margin-bottom: 15px;
        }

        .section-title p {
            color: #94a3b8;
        }


        /* ==============================
           SERVICIOS
        ============================== */

        .services {
            background: #0a1626;
        }

        .services-grid {
            display: grid;

            grid-template-columns:
                repeat(3, 1fr);

            gap: 25px;
        }

        .service {
            background: #0e1d30;

            border: 1px solid #1e3a56;

            border-radius: 15px;

            padding: 30px;

            transition: 0.3s;
        }

        .service:hover {
            transform: translateY(-8px);

            border-color: #00c8ff;

            box-shadow:
                0 15px 40px rgba(0,0,0,0.25);
        }

        .service-icon {
            font-size: 35px;

            margin-bottom: 18px;
        }

        .service h3 {
            margin-bottom: 10px;
        }

        .service p {
            color: #94a3b8;
        }


        /* ==============================
           PORTAFOLIO
        ============================== */

        .portfolio-grid {
            display: grid;

            grid-template-columns:
                repeat(3, 1fr);

            gap: 25px;
        }

        .project {
            background: #0e1d30;

            border-radius: 15px;

            overflow: hidden;

            border: 1px solid #1e3a56;
        }

        .project-image {
            height: 210px;

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 24px;

            font-weight: bold;

            background:
                linear-gradient(
                    135deg,
                    #0369a1,
                    #1d4ed8
                );
        }

        .project-content {
            padding: 25px;
        }

        .project-content h3 {
            margin-bottom: 8px;
        }

        .project-content p {
            color: #94a3b8;
        }


        /* ==============================
           PLANES
        ============================== */

        .pricing {
            background: #0a1626;
        }

        .pricing-grid {
            display: grid;

            grid-template-columns:
                repeat(3, 1fr);

            gap: 25px;
        }

        .plan {
            background: #0e1d30;

            border: 1px solid #1e3a56;

            border-radius: 15px;

            padding: 35px;
        }

        .plan.featured {
            border: 2px solid #00c8ff;

            transform: scale(1.03);
        }

        .plan h3 {
            font-size: 23px;

            margin-bottom: 15px;
        }

        .price {
            font-size: 36px;

            font-weight: bold;

            color: #00c8ff;

            margin-bottom: 25px;
        }

        .plan ul {
            list-style: none;

            margin-bottom: 30px;
        }

        .plan li {
            margin-bottom: 12px;

            color: #cbd5e1;
        }


        /* ==============================
           NOSOTROS
        ============================== */

        .about {
            display: grid;

            grid-template-columns:
                1fr 1fr;

            gap: 60px;

            align-items: center;
        }

        .about h2 {
            font-size: 40px;

            margin-bottom: 20px;
        }

        .about p {
            color: #a8b7c9;

            margin-bottom: 18px;
        }

        .about-card {
            background: #0e1d30;

            border: 1px solid #1e3a56;

            border-radius: 15px;

            padding: 35px;
        }

        .about-card h3 {
            margin-bottom: 20px;
        }

        .about-card li {
            list-style: none;

            margin-bottom: 14px;

            color: #cbd5e1;
        }


        /* ==============================
           CONTACTO
        ============================== */

        .contact {
            background: #0a1626;
        }

        .contact-box {
            max-width: 850px;

            margin: auto;

            text-align: center;

            background: #0e1d30;

            border: 1px solid #1e3a56;

            border-radius: 20px;

            padding: 60px 30px;
        }

        .contact-box h2 {
            font-size: 40px;

            margin-bottom: 15px;
        }

        .contact-box p {
            color: #94a3b8;

            margin-bottom: 30px;
        }


        /* ==============================
           FOOTER
        ============================== */

        footer {
            background: #020617;

            padding: 30px 20px;

            text-align: center;

            color: #64748b;
        }


        /* ==============================
           WHATSAPP
        ============================== */

        .whatsapp {
            position: fixed;

            right: 25px;

            bottom: 25px;

            width: 58px;

            height: 58px;

            border-radius: 50%;

            background: #25D366;

            display: flex;

            align-items: center;

            justify-content: center;

            color: white;

            font-size: 27px;

            box-shadow:
                0 8px 25px rgba(0,0,0,0.35);

            z-index: 2000;

            transition: 0.3s;
        }

        .whatsapp:hover {
            transform: scale(1.1);
        }


        /* ==============================
           RESPONSIVE
        ============================== */

        @media (max-width: 900px) {

            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 45px;
            }

            .services-grid,
            .portfolio-grid,
            .pricing-grid {
                grid-template-columns: 1fr 1fr;
            }

            .about {
                grid-template-columns: 1fr;
            }

        }


        @media (max-width: 600px) {

            .menu {
                display: none;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .hero-text p {
                font-size: 16px;
            }

            .services-grid,
            .portfolio-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .plan.featured {
                transform: none;
            }

            .section-title h2,
            .about h2,
            .contact-box h2 {
                font-size: 30px;
            }

        }
/* ==========================================
   AJUSTE DE ESPACIO - SECCIÓN CONTACTO
========================================== */

.contact {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.contacto-info {
    margin-top: 25px;
    margin-bottom: 0;
}

.contacto-mensaje {
    margin-top: 30px;
    margin-bottom: 0;
}
/* ==========================================
   PORTAFOLIO - DISEÑO MODERNO
========================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-card {
    background: #0e1d30;
    border: 1px solid #1e3a56;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: #00c8ff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
}


/* VISTA PREVIA */

.portfolio-preview {
    height: 250px;
    padding: 0;

    position: relative;
    overflow: hidden;

    background: #0a1626;
}


/* BARRA DEL NAVEGADOR */

.browser-bar {
    height: 42px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0 15px;

    background: #020617;

    border-bottom: 1px solid #1e3a56;
}

.browser-bar span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #64748b;
}


/* CONTENIDO DE LA VISTA PREVIA */

.preview-content {
    height: calc(100% - 42px);

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 25px;
}

.preview-content small {
    color: #00c8ff;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.preview-content h3 {
    color: #ffffff;

    font-size: 25px;

    margin-bottom: 10px;
}

.preview-content p {
    color: #cbd5e1;

    font-size: 14px;

    margin-bottom: 20px;
}


/* BOTÓN DENTRO DE LA VISTA PREVIA */

.preview-button {
    display: inline-block;

    width: fit-content;

    padding: 9px 15px;

    background: #00c8ff;

    color: #03111f;

    border-radius: 6px;

    font-size: 12px;

    font-weight: bold;
}


/* COLORES DE LAS VISTAS PREVIAS */

.portfolio-preview.restaurante {
    background: linear-gradient(
        135deg,
        #172b3d,
        #0e1d30
    );
}

.portfolio-preview.barberia {
    background: linear-gradient(
        135deg,
        #111827,
        #0e1d30
    );
}

.portfolio-preview.tecnologia {
    background: linear-gradient(
        135deg,
        #0b2235,
        #0e1d30
    );
}


/* INFORMACIÓN */

.portfolio-info {
    padding: 25px;
}

.portfolio-categoria {
    display: inline-block;

    color: #00c8ff;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}

.portfolio-info h3 {
    color: #ffffff;

    font-size: 21px;

    margin-bottom: 12px;
}

.portfolio-info p {
    color: #94a3b8;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 18px;
}


/* TECNOLOGÍAS */

.portfolio-tecnologias {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 22px;
}

.portfolio-tecnologias span {
    padding: 6px 9px;

    border: 1px solid #1e3a56;

    border-radius: 6px;

    color: #cbd5e1;

    font-size: 11px;
}


/* BOTÓN */

.portfolio-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 16px;

    color: #00c8ff;

    border: 1px solid #00c8ff;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;

    font-weight: bold;

    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    background: #00c8ff;

    color: #03111f;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 200, 255, 0.20);
}


/* RESPONSIVE PORTAFOLIO */

@media (max-width: 900px) {

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 600px) {

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

}
/* ==========================================
   PORTAFOLIO - ENCABEZADO Y ESPACIADO
========================================== */

.portfolio {
    padding: 90px 20px;
}

.portfolio .container {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px;
}

.portfolio-header .section-tag {
    display: block;
    margin-bottom: 12px;

    color: #00c8ff;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 2px;
}

.portfolio-header h2 {
    color: #ffffff;

    font-size: 36px;

    margin-bottom: 15px;
}

.portfolio-header p {
    color: #94a9c4;

    font-size: 16px;

    line-height: 1.7;

    margin: 0;
}
/* ==========================================
   PORTAFOLIO - ENCABEZADO
========================================== */

.portafolio {
    padding: 90px 20px;
}

.portafolio .portfolio-titulo {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.portafolio .portfolio-titulo span {
    display: block;

    color: #00c8ff;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.portafolio .portfolio-titulo h2 {
    color: #ffffff;

    font-size: 36px;

    margin: 0 0 15px;
}

.portafolio .portfolio-titulo p {
    color: #94a9c4;

    font-size: 16px;

    line-height: 1.7;

    margin: 0;
}


/* ESPACIO ENTRE EL ENCABEZADO Y LAS TARJETAS */

.portafolio .portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
}