*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Poppins,sans-serif;

background:#fff;

color:#222;

}
.header{

height:90px;

background:#ff6b00;

display:flex;

align-items:center;

position:sticky;

top:0;

z-index:999;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{

display:flex;

align-items:center;

gap:15px;

text-decoration:none;

color:#111;

}

.logo img{
    height:70px;
}

.menu{
    display:flex;
    gap:35px;
}

.menu a{

color:white;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.menu a:hover{

color:#111;

}

.btn-cotizar{
    background:#111;
    padding:14px 28px;
    border-radius:10px;
    color:white;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:20px;
}



.badge{

position:absolute;

top:-6px;

right:-6px;

background:#000;

width:20px;

height:20px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:12px;

color:white;

}


.badge{

position:absolute;

top:-6px;

right:-6px;

background:#000;

width:20px;

height:20px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:12px;

color:white;

}


.hero{

padding:80px 0;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.hero h1{

font-size:72px;

font-weight:900;

line-height:1.05;

}

.hero h1 span{

color:#ff6b00;

}

.subtitle{

color:#ff6b00;

font-weight:700;

letter-spacing:2px;

}

.hero p{

margin:25px 0;

font-size:18px;

line-height:1.8;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:40px;

}

.btn-primary{

background:#ff6b00;

padding:18px 40px;

border-radius:12px;

text-decoration:none;

color:white;

font-weight:bold;

}

.btn-secondary{

border:2px solid #111;

padding:18px 40px;

border-radius:12px;

text-decoration:none;

color:#111;

font-weight:bold;

}

.hero-image {
    position: relative;
    background: transparent;
}

.hero-image img {
    width: 100%;
    border-radius: 0;
    object-fit: cover;
    display: block;
}

.experience{

position:absolute;

left:-40px;

bottom:40px;

background:#ff6b00;

padding:35px;

border-radius:20px;

color:white;

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.experience h2{

font-size:60px;

}
/*=========================
        QUIÉNES SOMOS
=========================*/

.about{

    padding:100px 0;

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.section-tag{

    display:inline-block;

    padding:10px 20px;

    background:#fff3ea;

    color:#ff6b00;

    border-radius:40px;

    font-weight:700;

    margin-bottom:20px;

}

.about h2{

    font-size:45px;

    margin-bottom:25px;

}

.about p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.about-stats{

    display:flex;

    gap:25px;

    margin-top:40px;

}

.stat-box{

    flex:1;

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.stat-box h3{

    color:#ff6b00;

    font-size:42px;

    margin-bottom:10px;

}

.stat-box span{

    color:#555;

    font-weight:600;

}


/*=========================
      MISIÓN Y VISIÓN
=========================*/

.mission-vision{

    padding:100px 0;

    background:#f8f8f8;

}

.mission-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.mission-card{

    background:#fff;

    padding:50px;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

    border-top:6px solid #ff6b00;

}

.mission-card:hover{

    transform:translateY(-10px);

}

.icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#ff6b00;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin-bottom:30px;

}


.mission-card h2{

    font-size:34px;

    margin-bottom:20px;

}

.mission-card p{

    color:#666;

    line-height:1.9;

}


/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.about-grid,
.mission-grid{

grid-template-columns:1fr;

}

.about-stats{

flex-direction:column;

}

}
/*=========================
        FOOTER
=========================*/

.footer{

    background:#111;

    color:#fff;

    margin-top:80px;

}

.footer-container{
    width:92%;
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
    padding:70px 0;
}

.footer-column h2{

    color:#ff6b00;

    margin-bottom:20px;

}

.footer-column h3{

    color:#ff6b00;

    margin-bottom:20px;

}

.footer-column p{

    color:#ddd;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-column ul{

    list-style:none;

    padding:0;

}

.footer-column li{

    margin-bottom:14px;

}

.footer-column a{

    text-decoration:none;

    color:#ddd;

    transition:.3s;

}

.footer-column a:hover{

    color:#ff6b00;

}

.social{

    display:flex;

    gap:15px;

    margin-top:20px;

    flex-wrap:wrap;

}

.social a{

    background:#ff6b00;

    color:#fff;

    padding:10px 18px;

    border-radius:8px;

    font-weight:600;

}

.social a:hover{

    background:#fff;

    color:#ff6b00;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;

    padding:25px;

    color:#bbb;

}
/*=========================================

    CARRITO DE COMPRAS

=========================================*/



/*=========================================

    MODAL COTIZACIÓN

=========================================*/

.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.modal.active{
    display:flex;
}

.modal-content{
    background:#fff;
    padding:30px;
    border-radius:12px;
    width:90%;
    max-width:500px;
}

#cerrarModal{
    float:right;
    cursor:pointer;
    font-size:24px;
}
/*=========================================

    WHATSAPP FLOAT

=========================================*/
.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 32px;

    text-decoration: none;

    box-shadow: 0 8px 20px rgba(0,0,0,.25);

    z-index: 9999;

    transition: .3s;
}

.whatsapp-float:hover{
    transform: scale(1.1);
}
/*=========================================
    PRODUCT MODAL
=========================================*/
.modal{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.6);

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.modal-content{

    background:#fff;

    width:90%;

    max-width:500px;

    padding:30px;

    border-radius:15px;

    text-align:center;

    position:relative;

}

.modal-content img{

    width:100%;

    border-radius:10px;

    margin-bottom:20px;

}

.close{

    position:absolute;

    top:15px;

    right:20px;

    cursor:pointer;

    font-size:30px;

}
/* Icon button - alineado con botones del header */
.icon-btn {
    position: relative;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

/* Cart modal - centrado en pantalla */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: #fff;
    border-radius: 16px;
    width: 420px;
    max-width: 95%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 24px;
    position: relative;
}