/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f8fa;
    color:#222;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

.header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    font-size:30px;
    font-weight:800;
}

.logo span{
    color:#0077ff;
}

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:#0077ff;
}

.header-icons{
    display:flex;
    gap:20px;
    font-size:20px;
}

.header-icons a{
    transition:.3s;
}

.header-icons a:hover{
    color:#0077ff;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;
}

.hero-content{
    width:90%;
    max-width:700px;
    margin:auto;
}

.badge{
    display:inline-block;
    background:#0077ff;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    color:#666;
    margin-bottom:40px;
}

.buttons{
    display:flex;
    gap:20px;
}

.btn-primary,
.btn-secondary{
    padding:16px 30px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#0077ff;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    background:#fff;
    border:2px solid #ddd;
}

.btn-secondary:hover{
    border-color:#0077ff;
    color:#0077ff;
}

/* =========================
   FOOTER
========================= */

.footer{
    padding:40px 0;
    text-align:center;
    background:#111;
    color:#fff;
    margin-top:80px;
}
/* =========================
   HERO MODERNO
========================= */

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    padding:80px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-content h1{
    font-size:64px;
    font-weight:800;
    line-height:1.05;
    margin:25px 0;
}

.hero-content p{
    font-size:18px;
    color:#666;
    max-width:550px;
    line-height:1.7;
    margin-bottom:35px;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#0077ff;
    color:white;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}


.hero-image{
    display:flex;
    justify-content:center;
}


.shirt-card{

    width:350px;
    height:420px;

    background:white;
    border-radius:30px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    text-align:center;
}


.shirt-card i{

    font-size:120px;
    color:#0077ff;
    margin-bottom:25px;

}


.shirt-card h3{

    font-size:28px;
    margin-bottom:10px;

}


.shirt-card p{

    color:#777;

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .hero-grid{

        grid-template-columns:1fr;

        text-align:center;

    }


    .hero-content p{

        margin-left:auto;
        margin-right:auto;

    }


    .buttons{

        justify-content:center;

    }


    .hero-content h1{

        font-size:45px;

    }

}/* =========================
   PRODUCTOS DESTACADOS
========================= */

.products-section{
    padding:100px 0;
    background:#fff;
}


.section-title{
    text-align:center;
    margin-bottom:50px;
}


.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}


.section-title p{
    color:#666;
}


.products-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}


.product-card{

    background:#f7f8fa;
    padding:30px;
    border-radius:25px;
    text-align:center;

    transition:.3s;

}


.product-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);

}


.product-image{

    height:220px;

    display:flex;
    justify-content:center;
    align-items:center;

}


.product-image i{

    font-size:90px;
    color:#0077ff;

}


.product-card h3{

    font-size:22px;
    margin:20px 0 10px;

}


.price{

    font-size:25px;
    font-weight:700;
    margin-bottom:20px;

}



@media(max-width:900px){

    .products-grid{

        grid-template-columns:1fr;

    }

}/* =========================
   PAGINAS INTERNAS
========================= */


.page-header{

    padding:80px 0;
    text-align:center;

}


.page-header h1{

    font-size:50px;
    margin-bottom:15px;

}


.page-header p{

    color:#666;
    font-size:18px;

}


.page{

    min-height:70vh;

}/* =========================
   PRODUCTO
========================= */

.product-detail{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    padding:80px 0;
}

.product-detail-image{
    height:500px;
    background:#f7f8fa;
    border-radius:25px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.product-detail-image i{
    font-size:180px;
    color:#0077ff;
}

.product-detail-info h1{
    font-size:42px;
    margin-bottom:20px;
}

.product-detail-info .price{
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;
}

.product-detail-info p{
    color:#666;
    line-height:1.7;
}

@media(max-width:900px){

    .product-detail{
        grid-template-columns:1fr;
    }

.product-image{

    height:320px;
    background:#fff;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    padding:20px;

}

.product-image img{

    width:100%;
    height:100%;
    object-fit:contain;
    transition:.4s;

}

.product-card:hover .product-image img{

    transform:scale(1.05);

}
.product-detail-image{

    background:#fff;
    border-radius:25px;
    padding:40px;
    display:flex;
    justify-content:center;
    align-items:center;

}

.product-detail-image img{

    width:100%;
    max-width:500px;
    height:auto;
    object-fit:contain;

}