:root{
    --primary:#005FA3;
    --secondary:#00BCD4;
    --success:#27AE60;
    --light:#F7FBFF;
    --dark:#183B56;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7fbff;
}

/* NAVBAR */

.navbar{
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:white;
    position:fixed;
    top:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.logo h2{
    color:#005fa3;
    font-size:24px;
}

.logo span{
    color:#777;
    font-size:13px;
}

.navbar ul{
    display:flex;
    gap:40px;
    list-style:none;
}

.navbar a{
    text-decoration:none;
    color:#183b56;
    font-weight:500;
}

.navbar a:hover{
    color:#00bcd4;
}

/* HERO */

.hero{
    min-height:100vh;
    padding:80px 8% 80px;
    display:flex;
    align-items:center;
    justify-content:space-between;

    background:
    linear-gradient(
    135deg,
    #eef8ff,
    #dff5ff
    );
}

.hero-text{
    width:50%;
}

.badge{
    display:inline-block;
    background:#d9f7ff;
    color:#00a8c5;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
}

.hero h1{
    font-size:65px;
    color:#005fa3;
    line-height:1.1;
    margin:25px 0;
}

.hero p{
    font-size:20px;
    color:#555;
    max-width:550px;
}

.btn{
    display:inline-block;
    margin-top:35px;
    background:#00bcd4;
    color:white;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#0097a7;
}

.hero-image{
    width:50%;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:600px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-text,
    .hero-image{
        width:100%;
    }

    .hero h1{
        font-size:45px;
    }

    .navbar{
        flex-direction:column;
        gap:20px;
    }

}
.stats{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;

    padding:60px 8%;

    background:white;
}

.stat-box{
    background:white;
    min-width:220px;

    text-align:center;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-box h2{
    font-size:45px;
    color:#005FA3;
}

.stat-box p{
    color:#666;
    margin-top:10px;
}

.servicios{
    padding:100px 8%;
    background:#f7fbff;
}

.servicios h2{
    text-align:center;
    font-size:40px;
    color:#005FA3;
    margin-bottom:50px;
}

.servicios-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.servicio{
    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.07);
}

.servicio h3{
    color:#005FA3;
    margin-bottom:15px;
}

.servicio p{
    color:#666;
    line-height:1.7;
}

.productos{
    padding:100px 8%;
    background:white;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#00BCD4;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    color:#005FA3;
    margin-top:10px;
}

.section-title p{
    max-width:700px;
    margin:15px auto;
    color:#666;
}

.productos-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.producto-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.producto-card:hover{
    transform:translateY(-10px);
}

.producto-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.producto-card h3{
    color:#005FA3;
    padding:20px 20px 10px;
}

.producto-card p{
    padding:0 20px 25px;
    color:#666;
}

.marcas{
    padding:100px 8%;
    background:#f7fbff;
}

.marcas-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
    margin-top:50px;
}

.marca{
    background:white;
    padding:40px;
    border-radius:15px;
    text-align:center;
    font-weight:600;
    color:#005FA3;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.nosotros{
    padding:100px 8%;
    display:flex;
    align-items:center;
    gap:60px;
    background:white;
}

.nosotros-img{
    flex:1;
}

.nosotros-img img{
    width:100%;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.nosotros-info{
    flex:1;
}

.nosotros-info span{
    color:#00BCD4;
    font-weight:600;
    text-transform:uppercase;
}

.nosotros-info h2{
    color:#005FA3;
    font-size:42px;
    margin:15px 0;
}

.nosotros-info p{
    color:#666;
    line-height:1.8;
}

.mision-vision{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.card-info{
    background:#f7fbff;
    padding:25px;
    border-radius:15px;
}

.card-info h3{
    color:#005FA3;
    margin-bottom:10px;
}

.contacto{
    padding:100px 8%;
    background:#f7fbff;
}

.contacto-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:50px;
}

.contacto-info{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
}

.contacto-info h3{
    color:#005FA3;
    margin-bottom:20px;
}

.contacto-info p{
    margin-bottom:15px;
    color:#666;
}

.contact-form{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

.contact-form textarea{
    min-height:140px;
}

.contact-form button{
    background:#005FA3;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
    cursor:pointer;
}

.footer{
    background:#005FA3;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.footer h3{
    margin-bottom:15px;
}

.footer p{
    margin:10px 0;
}

.whatsapp-float{

    position:fixed;

    bottom:25px;

    right:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:35px;

    box-shadow:0 10px 25px rgba(37,211,102,.4);

    z-index:9999;

    transition:.3s;
}

.whatsapp-float:hover{

    transform:scale(1.1);

    box-shadow:0 15px 35px rgba(37,211,102,.6);
}
/* ==========================
   RESPONSIVE CELULARES
========================== */

@media screen and (max-width: 768px){

    /* HEADER */

    .navbar{
        flex-direction:column;
        padding:15px;
        gap:15px;
    }

    .logo{
        justify-content:center;
        text-align:center;
    }

    .logo img{
        width:50px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    /* HERO */

    .hero{
        flex-direction:column;
        text-align:center;
        padding:40px 20px;
    }

    .hero-content{
        width:100%;
    }

    .hero-content h1{
        font-size:38px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-image{
        width:100%;
        margin-top:30px;
    }

    .hero-image img{
        width:100%;
        max-width:350px;
    }

    /* STATS */

    .stats{
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .stat-box{
        width:90%;
        max-width:280px;
    }

    /* SERVICIOS */

    .servicios-grid{
        grid-template-columns:1fr;
    }

    /* PRODUCTOS */

    .productos-grid{
        grid-template-columns:1fr;
    }

    /* MARCAS */

    .marcas-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* NOSOTROS */

    .nosotros{
        flex-direction:column;
    }

    .nosotros-img,
    .nosotros-info{
        width:100%;
    }

    .mision-vision{
        flex-direction:column;
    }

    /* CONTACTO */

    .contacto-container{
        grid-template-columns:1fr;
    }

    .contact-form{
        grid-template-columns:1fr;
    }

    .contact-form textarea{
        grid-column:auto;
    }

    .contact-form button{
        grid-column:auto;
    }

    /* TITULOS */

    h1{
        font-size:36px;
    }

    h2{
        font-size:28px;
    }

}