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

        body{
    margin: 0;
    padding-top: 80px; /* altura real del header */
    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(255,108,12,0.7), rgba(0,117,201,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;
        }

        /* ssssssssssssss */
/* RESET */


/* SECCIÓN FULLSCREEN */
.nosotros {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;

    background: linear-gradient(135deg, #0075c9, #ff6c0c);
    color: white;
    text-align: center;
    padding-top: 120px;
    padding: 60px 20px;
}

/* HERO */
.nosotros-hero {
    margin-bottom: 40px;
    animation: fadeUp 1.2s ease;
}

.nosotros-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.nosotros-hero p {
    opacity: 0.8;
}

/* INFO */
.nosotros-info {
    max-width: 800px;
    margin-bottom: 40px;
    animation: fadeUp 1.5s ease;
}

/* CARDS */
.nosotros-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 1.8s ease;
}

.card {
    background: rgba(0,108,201,0.05);
    padding: 25px;
    border-radius: 15px;
    width: 280px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 25px rgba(96, 192, 17, 0.4);
}

/* FRASE FINAL */
.nosotros-final {
    margin-top: 50px;
    font-size: 1.5rem;
    opacity: 0.9;
}

/* ANIMACIÓN */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nosotros-hero h1 {
        font-size: 2rem;
    }

    .card {
        width: 90%;
    }
}

.nosotros::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(0, 255, 255, 0.1);
    filter: blur(120px);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.nosotros {
    position: relative;
    overflow: hidden;
}

.nosotros * {
    position: relative;
    z-index: 1;
}


/*  redes  seccion*/

.redes {
    background: linear-gradient(135deg, #0075c9, #203a43, #ff6c0c);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.contenedor-redes h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contenedor-redes p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.iconos-redes {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.icono {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Hover general */
.icono:hover {
    transform: translateY(-10px) scale(1.1);
}

/* Colores por red */
.facebook:hover {
    background: #1877f2;
}

.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.twitter:hover {
    background: #1da1f2;
}

.whatsapp:hover {
    background: #25d366;
}

/* Responsive */
@media (max-width: 600px) {
    .contenedor-redes h2 {
        font-size: 2rem;
    }

    .icono {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}



/* ===== 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;
    }
}
/* animacion al abrir el menu */
