
        *{
            margin:0;
            padding:0;
            box-sizing:border-box;
            font-family: 'Segoe UI', sans-serif;
        }

        body{
            background:#0049d1;
        }

        /* HEADER */
        header{
            background:#ff6c0c;
            color:white;
            position:fixed;
            width:100%;
            top:0;
            z-index:1000;
            box-shadow:0 2px 5px rgba(0,0,0,0.3);
        }

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

        .logo{
            font-size:24px;
            font-weight:bold;
            color:#00c3ff;
        }
        .logo img{
            
            height: 50px;
            width: auto;

        }

        .menu a{
            color:white;
            text-decoration:none;
            margin-left:25px;
            font-weight:500;
            transition:0.3s;
        }

        .menu a:hover{
            color:#00c3ff;
        }

        /* HERO */
        .hero{
            height:100vh;
            background:linear-gradient(rgba(16, 81, 194, 0.7), rgba(10,31,68,0.7)),
            url('https://images.unsplash.com/photo-1581091870627-3f89c8b1eaf0');
            background-size:cover;
            background-position:center;
            display:flex;
            align-items:center;
            justify-content:center;
            text-align:center;
            color:white;
            padding-top:80px;
        }

        .hero h1{
            font-size:50px;
        }

        .hero p{
            margin-top:15px;
            font-size:20px;
        }

        .btn{
            margin-top:20px;
            padding:12px 25px;
            background:#00c3ff;
            border:none;
            color:white;
            font-size:16px;
            cursor:pointer;
            border-radius:5px;
        }

/* ===== SERVICIOS===== */

.servicios {
    min-height: 100vh;
    background: linear-gradient(135deg, #0075c9, #ff6c0c);
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

/* EFECTO LUZ DE FONDO */
.servicios::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(0, 200, 255, 0.15);
    filter: blur(120px);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

/* TITULOS */
.titulo {
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitulo {
    opacity: 0.7;
    margin-bottom: 60px;
}

/* GRID PERFECTO */
.servicios-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* CARD PRO */
.servicio-card {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* ICONO */
.icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* TEXTO */
.servicio-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.servicio-card p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.servicio-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;

    margin-top: 15px;
    border-radius: 10px;

    transition: 0.4s;
}

/* EFECTO HOVER PRO */
.servicio-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* HOVER PREMIUM */
.servicio-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.6);
}

/* EFECTO BRILLO */
.servicio-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,255,0.15), transparent);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.5s;
}

.servicio-card:hover::before {
    opacity: 1;
}

/* CTA */
.cta {
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta a {
    display: inline-block;
    padding: 14px 30px;
    background: #ff6c0c;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(192, 86, 18, 0.5);
}

.cta a:hover {
    background: #ea580c;
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .titulo {
        font-size: 2.2rem;
    }
}



/* ===== MENU HAMBURGUESA ===== */

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .menu {
    transform: translateY(-20px);
    opacity: 0;
}

.menu.active {
    transform: translateY(0);
    opacity: 1;
}

    .nav {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
        color: white;
    }

    .menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #b84e11;

        display: flex;
        flex-direction: column;
        align-items: center;

        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
    }

    .menu a {
        margin: 15px 0;
        font-size: 18px;
    }

    .menu.active {
        max-height: 300px;
    }
}

/* ===== RESPONSIVE GENERAL ===== */

@media (max-width: 768px) {

    /* HERO */
    .overlay h1 {
        font-size: 28px;
    }

    .overlay p {
        font-size: 16px;
    }

    /* SECCIONES */
    section {
        padding: 60px 20px;
    }

    /* NOSOTROS */
    .nosotros-content {
        flex-direction: column;
        text-align: center;
    }

    .nosotros-text h2 {
        font-size: 28px;
    }

    .nosotros-text p {
        font-size: 16px;
    }

    /* CARDS */
    .cards {
        grid-template-columns: 1fr;
    }

    /* LOGOS */
    .logos-track img {
        width: 100px;
        margin: 0 20px;
    }
}
