/*==================================================
  GUA'A IMPORTADORA - DISTRIBUIDORA E.A.S.
  Style.css v3.0
==================================================*/

/*=========================================
VARIABLES
=========================================*/

:root{

    --primary:#0B3D91;
    --secondary:#F7B500;
    --accent:#D62828;

    --dark:#071522;
    --dark-light:#10263d;

    --white:#FFFFFF;
    --text:#dbe6f2;
    --gray:#6b7280;

    --radius:18px;

    --shadow:0 15px 40px rgba(0,0,0,.25);

    --transition:.35s ease;

    --container:1320px;

}

/*=========================================
RESET
=========================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--dark);

    color:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/*=========================================
CONTAINER
=========================================*/

.container{

    width:min(92%,var(--container));

    margin:auto;

}

/*=========================================
SECCIONES
=========================================*/

section{

    padding:90px 0;

}

.section-header{

    text-align:center;

    margin-bottom:60px;

}

.section-header span{

    color:var(--secondary);

    font-weight:600;

    letter-spacing:3px;

    font-size:.9rem;

}

.section-header h2{

    margin-top:12px;

    color:#071522;

    font-size:clamp(2rem,4vw,3rem);

    font-weight:700;

}

.section-header p{

    margin-top:20px;

    color:#555;

    max-width:700px;

    margin-inline:auto;

}
/*=========================================
HEADER
=========================================*/

.header{

    position:fixed;

    top:15px;

    left:50%;

    transform:translateX(-50%);

    width:95%;

    max-width:1450px;

    z-index:999;

    border-radius:20px;

    background:rgba(7,21,34,.82);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 20px;

}

.logo img{

    height:60px;

    width:auto;

}

.navbar{

    display:none;

}

.btn-whatsapp{

    display:none;

}

.menu-toggle{

    border:none;

    background:none;

    color:#fff;

    font-size:1.7rem;

    cursor:pointer;

}
/*=========================================
HERO
=========================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:url("../img/hero.webp");

    background-size:cover;

    background-position:75% center;

    background-repeat:no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        180deg,

        rgba(7,21,34,.75),

        rgba(7,21,34,.55)

    );

}

.hero-wrapper{

    position:relative;

    z-index:2;

    display:flex;

    align-items:center;

    min-height:100vh;

}

.hero-content{

    width:100%;

    max-width:700px;

}

.hero-tag{

    display:inline-block;

    color:var(--secondary);

    letter-spacing:3px;

    font-size:.8rem;

    font-weight:600;

    margin-bottom:20px;

}

.hero h1{

    font-size:clamp(2.5rem,8vw,5rem);

    line-height:1.1;

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--secondary);

}

.hero p{

    font-size:1rem;

    color:var(--text);

    max-width:550px;

    margin-bottom:35px;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 28px;

    background:var(--secondary);

    color:#071522;

    border-radius:60px;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary:hover{

    transform:translateY(-3px);

}
/*==================================================
EMPRESA
==================================================*/

.empresa{

    background:#ffffff;

}

.empresa-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:50px;

    align-items:center;

}

.empresa-texto p{

    color:#555;

    margin-bottom:20px;

    font-size:1rem;

}

.empresa-lista{

    margin-top:30px;

}

.empresa-lista li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    color:#333;

    font-weight:500;

}

.empresa-lista i{

    color:var(--secondary);

}

.empresa-imagen img{

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

/*==================================================
PRODUCTOS
==================================================*/

.productos{

    background:#f5f7fb;

}

.productos-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:30px;

}

.producto-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:var(--transition);

}

.producto-card:hover{

    transform:translateY(-8px);

}

.producto-card img{

    height:260px;

    object-fit:cover;

}

.producto-info{

    padding:25px;

}

.producto-info h3{

    color:#071522;

    margin-bottom:10px;

}

.producto-info p{

    color:#666;

}

/*==================================================
VENTAJAS
==================================================*/

.ventajas{

    background:#ffffff;

}

.ventajas-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:30px;

}

.ventaja-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:var(--transition);

}

.ventaja-card:hover{

    transform:translateY(-8px);

}

.icono{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#f8f4e8;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.icono i{

    font-size:2rem;

    color:var(--primary);

}

.ventaja-card h3{

    color:#071522;

    margin-bottom:15px;

}

.ventaja-card p{

    color:#666;

}

/*==================================================
CONTACTO
==================================================*/

.contacto{

    background:linear-gradient(
        135deg,
        #0B3D91,
        #071522
    );

    text-align:center;

}

.contacto-box{

    max-width:800px;

    margin:auto;

}

.contacto span{

    color:#FFC107;

    letter-spacing:3px;

}

.contacto h2{

    font-size:clamp(2rem,4vw,3rem);

    margin:20px 0;

}

.contacto p{

    color:#d9e2ef;

    margin-bottom:40px;

}

.contact-buttons{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.btn-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:16px 28px;

    border-radius:60px;

    color:#fff;

    border:2px solid rgba(255,255,255,.25);

    transition:var(--transition);

}

.btn-secondary:hover{

    background:#fff;

    color:#071522;

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:#05111d;

    padding:60px 0;

    text-align:center;

}

.footer-logo img{

    width:180px;

    margin:auto;

    margin-bottom:25px;

}

.footer-text{

    font-weight:700;

    margin-bottom:10px;

}

.footer-contact{

    margin:30px 0;

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-contact a{

    color:#dbe6f2;

}

.footer-copy{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    color:#8fa2b8;

    font-size:.9rem;

}