/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
 background: #f5f7fa; /* antes azul oscuro */
    color: #222;
}

/* HEADER */
.main-header{
background: #021c33;
border-bottom: 3px solid #ffb400;
padding:18px 40px;
position:sticky;
top:0;
z-index:999;
box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.container-header{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1400px;
margin:auto;
}

.logo-box{
display:flex;
align-items:center;
gap:15px;
}

.logo-box img{
height:90px;
width:auto;
object-fit:contain;
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.logo-text span{
font-size:38px;
}

.logo-text span{
display:block;
font-size:34px;
font-weight:800;
color:#fdbb00;
line-height:1;
}

.logo-text small{
display:block;
font-size:16px;
color:white;
letter-spacing:2px;
text-transform:uppercase;
}

/* MENU */
.main-nav{
display:flex;
gap:35px;
}

.main-nav a{
    
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    position:relative;
    transition:.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.cart-count{
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    margin-left: 5px;
}

.main-nav a:hover{
    color: #ffb400;
}

.main-nav a{
color:white;
text-decoration:none;
font-size:20px;
font-weight:600;
position:relative;
transition:.3s;
}

.main-nav a:hover{
color:#fdbb00;
}

.main-nav a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:3px;
background:#fdbb00;
transition:.3s;
}

.main-nav a:hover::after{
width:100%;
}

/* HERO */
.hero{
height:520px;
background:linear-gradient(135deg,#022949,#043b67);
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-overlay{
width:100%;
height:100%;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
}

.hero-content h1{
font-size:58px;
font-weight:bold;
margin-bottom:20px;
}

.hero-content p{
font-size:26px;
margin-bottom:30px;
}

.hero-btn{
background:#fdbb00;
color:black;
text-decoration:none;
padding:18px 35px;
font-weight:bold;
font-size:20px;
border-radius:12px;
transition:.3s;
}

.hero-btn:hover{
transform:translateY(-3px);
}

/* PRODUCTOS */
.productos-section{
padding:70px 40px;
background:#03203a;
}

.section-title{
text-align:center;
font-size:42px;
margin-bottom:50px;
}

.product-container {
    background: #fff;
    border-radius: 12px;
}

.productos-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
max-width:1400px;
margin:auto;
}

.product-card{
background:white;
color:black;
border-radius:20px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,.18);
transition:.3s;
}

.product-card:hover{
transform:translateY(-8px);
}

.product-image-box{
height:240px;
background:#f5f5f5;
display:flex;
justify-content:center;
align-items:center;
}

.product-image-box img{
max-width:100%;
max-height:100%;
object-fit:contain;
}

.product-info{
padding:22px;
}

.product-info h1 {
    color: #021c33;
}

.product-info h3{
font-size:22px;
margin-bottom:10px;
min-height:55px;
}

.product-info p{
font-size:15px;
color:#444;
margin-bottom:15px;
min-height:50px;
}

.price{
font-size:28px;
font-weight:bold;
color: #ffb400;
margin-bottom:18px;
}

.btn-producto{
display:inline-block;
background:#fdbb00;
color:black;
text-decoration:none;
padding:12px 20px;
border-radius:8px;
font-weight:bold;
}

/* WHATSAPP */
.whatsapp-container{
position:fixed;
bottom:20px;
right:20px;
z-index:999;
}

.whatsapp-button{
width:68px;
height:68px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.whatsapp-button img{
width:34px;
height:34px;
}

.whatsapp-menu{
display:none;
background:white;
padding:15px;
border-radius:15px;
margin-bottom:12px;
box-shadow:0 8px 20px rgba(0,0,0,.2);
min-width:220px;
}

.whatsapp-menu a{
display:block;
padding:12px;
text-decoration:none;
color:#021c33;
font-weight:600;
border-bottom:1px solid #eee;
}

.whatsapp-menu a:last-child{
border-bottom:none;
}

/* RESPONSIVE */
@media(max-width:768px){

.container-header{
flex-direction:column;
gap:20px;
}

.main-nav{
gap:20px;
flex-wrap:wrap;
justify-content:center;
}

.logo-text span{
font-size:26px;
}

.hero-content h1{
font-size:36px;
}

.hero-content p{
font-size:20px;
}

.section-title{
font-size:32px;
}

}

/* FOOTER PRO */
.main-footer {
    background: #021c33;
    color: #fff;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.footer-col {
    width: 250px;
}

.footer-col h3,
.footer-col h4 {
    color: #ffb400;
    margin-bottom: 10px;
}

.footer-col p,
.footer-col a {
    color: #ccc;
    font-size: 14px;
}

.footer-col a {
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
}

.footer-copy {
    text-align: center;
    padding: 15px;
    background: #011421;
    font-size: 13px;
}

.cart-count{
    background:#ff3b3b;
    color:#fff;
    padding:3px 8px;
    border-radius:50px;
    font-size:12px;
    margin-left:5px;
}

.galeria-pro{
    display:flex;
    gap:15px;
}

.thumbs-vertical{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.thumbs-vertical img{
    width:70px;
    height:70px;
    object-fit:cover;
    cursor:pointer;
    border-radius:6px;
    border:2px solid transparent;
}

.thumbs-vertical img:hover{
    border:2px solid #ffb400;
}

.main-img-box{
    flex:1;
}

.main-img-box img{
    width:100%;
    max-height:420px;
    object-fit:contain;
    border-radius:12px;
    background:#fff;
}

/* MINI CARRITO */
.mini-cart{
    position:fixed;
    top:0;
    right:-400px;
    width:350px;
    height:100%;
    background:#fff;
    box-shadow:-4px 0 15px rgba(0,0,0,0.2);
    z-index:9999;
    transition:0.3s;
    display:flex;
    flex-direction:column;
}

.mini-cart.active{
    right:0;
}

/* HEADER */
.mini-cart-header{
    padding:15px;
    background:#021c33;
    color:#fff;
    display:flex;
    justify-content:space-between;
}

/* BODY */
.mini-cart-body{
    flex:1;
    overflow-y:auto;
    padding:10px;
}

/* ITEM */
.mini-item{
    display:flex;
    gap:10px;
    margin-bottom:10px;
    border-bottom:1px solid #eee;
    padding-bottom:10px;
}

.mini-item img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.mini-item-info{
    flex:1;
}

.mini-item-info p{
    font-size:13px;
    margin:0;
}

.remove{
    color:red;
    cursor:pointer;
}

/* FOOTER */
.mini-cart-footer{
    padding:15px;
    border-top:1px solid #ddd;
}

.btn-ver-cart{
    display:block;
    margin-top:10px;
    text-align:center;
    background:#ffb400;
    padding:10px;
    border-radius:6px;
    text-decoration:none;
    color:#000;
    font-weight:bold;
}

.progress-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:15px 0;
}

.step{
    text-align:center;
    flex:1;
    position:relative;
}

.circle{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#ccc;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:14px;
}

.step.active .circle{
    background:#28a745;
}

.line{
    height:4px;
    background:#ccc;
    flex:1;
}

.line.active{
    background:#28a745;
}

.btn-fav.active{
    background:#ff3b3b;
    color:#fff;
}

.form-control{
    padding:8px 10px;
    font-size:14px;
}

textarea.form-control{
    min-height:70px;
}

.form-control{
    padding:8px 10px;
    font-size:14px;
}

textarea.form-control{
    min-height:60px;
}

.card-box h5{
    font-size:16px;
}

.field-label{
    font-size:13px;
    margin-bottom:4px;
}

.sub-card{
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:15px;
    background:#fafafa;
}

.sub-card h6{
    font-weight:700;
    margin-bottom:5px;
}

.sub-card label{
    font-size:12px;
    font-weight:600;
    margin-top:8px;
    display:block;
}

.sub-card .form-control{
    padding:6px 10px;
    font-size:14px;
}

textarea.form-control{
    min-height:60px;
}

.resumen-wrap{
    max-width:520px;
    margin:0 auto;
}

.envio-wrap{
    max-width:850px;
    margin:0 auto;
}

.sub-card{
    background:#f9fafb;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:14px;
}

.sub-card h6{
    font-weight:700;
    margin-bottom:4px;
}

.sub-card label{
    font-size:13px;
    margin-bottom:2px;
}

.checkout-wrap{
    max-width:850px;
    margin:0 auto;
}

.resumen-wrap{
    max-width:420px;
    margin:20px auto 0;
}

.envio-box{
    max-width:850px;
    margin:0 auto 18px;
}

.sub-card{
    background:#f9fafb;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:14px;
}