@font-face{
    font-family:'Anton';
    src:url('fonts/Anton-Regular.ttf');
}

@font-face{
    font-family:'Montserrat';
    src:url('fonts/Montserrat-Medium.ttf');
    font-weight:500;
}

@font-face{
    font-family:'Montserrat';
    src:url('fonts/Montserrat-Bold.ttf');
    font-weight:700;
}

@font-face{
    font-family:'Montserrat';
    src:url('fonts/Montserrat-Black.ttf');
    font-weight:900;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    color:white;
    overflow-x:hidden;

    background:
    linear-gradient(rgba(0,0,0,.20),rgba(0,0,0,.20)),
    url("img/Fondo1.jpg");

    background-size:cover;
    background-position:center top;
    background-attachment:fixed;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:999;

    background:
    repeating-linear-gradient(
        0deg,
        rgba(255,255,255,.03) 0px,
        rgba(255,255,255,.03) 2px,
        transparent 2px,
        transparent 7px
    );

    opacity:.35;

    animation:vhs .18s linear infinite;
}

body::after{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:998;

    background:
    linear-gradient(
        90deg,
        rgba(255,0,128,.04),
        rgba(0,255,255,.04),
        rgba(255,255,0,.02)
    );

    mix-blend-mode:screen;

    animation:rgb 4s ease-in-out infinite alternate;
}

@keyframes vhs{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(8px);
    }

}

@keyframes rgb{

    from{
        transform:translateX(-2px);
    }

    to{
        transform:translateX(2px);
    }

}

@keyframes logoIn{

    from{
        opacity:0;
        transform:translateY(-15px) scale(.9);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

.hero-header{
    width:100%;
    height:250px;

    position:fixed;
    top:0;
    left:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:18px;

    z-index:1000;

    background:
    linear-gradient(
        180deg,
        rgb(255,20,147),
        rgb(255,0,128)
    );

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:
    height .7s cubic-bezier(.22,1,.36,1),
    padding .7s cubic-bezier(.22,1,.36,1),
    background .7s ease;
}

.hero-header::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    repeating-linear-gradient(
        0deg,
        rgba(255,255,255,.025) 0px,
        rgba(255,255,255,.025) 2px,
        transparent 2px,
        transparent 8px
    );

    pointer-events:none;
}

.hero-header.shrink{
    height:120px;
    padding:10px 18px;
    background:rgb(255,20,147);
}

.hero-logo{
    width:185px;
    margin-bottom:18px;

    position:relative;
    z-index:2;

    animation:logoIn .8s ease;

    transition:
    width .7s cubic-bezier(.22,1,.36,1),
    margin .7s cubic-bezier(.22,1,.36,1);

    filter:
    drop-shadow(0 0 10px rgba(255,0,128,.35))
    drop-shadow(0 0 15px rgba(0,255,255,.15));
}

.hero-header.shrink .hero-logo{
    width:85px;
    margin-bottom:8px;
}

nav{
    display:flex;
    gap:42px;
    z-index:2;

    transition:gap .7s cubic-bezier(.22,1,.36,1);
}

nav a{
    color:#fff000;
    text-decoration:none;
    font-size:12px;
    font-weight:900;
    letter-spacing:1px;

    position:relative;

    transition:.25s ease;
}

nav a:hover{
    color:white;
    transform:translateY(-2px);
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;

    width:0%;
    height:2px;

    background:#fff000;

    transition:.25s ease;
}

nav a:hover::after{
    width:100%;
}

.main-container{
    max-width:1200px;

    margin:0 auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:40px;

    padding:
    260px
    20px
    40px;
}

.images{
    width:55%;
    height:460px;

    display:flex;

    overflow:hidden;

    border-radius:20px;

    position:relative;

    box-shadow:
    0 0 25px rgba(255,0,128,.15);
}

.images::before{
    content:"";
    position:absolute;
    inset:0;

    pointer-events:none;

    background:
    repeating-linear-gradient(
        0deg,
        rgba(255,255,255,.03) 0px,
        rgba(255,255,255,.03) 2px,
        transparent 2px,
        transparent 8px
    );

    animation:vhs .2s linear infinite;

    z-index:2;
}

.shirt{
    width:50%;
    height:100%;

    object-fit:cover;

    transition:.35s ease;
}

.shirt:hover{
    transform:scale(1.03);
    filter:brightness(1.06);
}

.offer{
    width:45%;
    text-align:center;
}

.offer h2{
    font-family:'Anton';
    font-size:56px;
    font-weight:400;
    line-height:1;

    color:#fff000;

    text-shadow:
    -4px 0 #ff0080,
    4px 0 #00ffff;
}

.price{
    display:flex;
    justify-content:center;
    align-items:flex-start;

    margin-top:10px;

    line-height:.9;

    transition:.3s ease;
}

.price:hover{
    transform:scale(1.03);
}

.peso,
.big,
.dec{
    font-family:'Anton';
    color:#fff000;

    text-shadow:
    -5px 0 #ff0080,
    5px 0 #00ffff;
}

.peso{
    font-size:70px;
    margin-top:40px;
}

.big{
    font-size:185px;
}

.dec{
    font-size:60px;
    margin-top:24px;
}

.offer p{
    width:85%;

    margin:18px auto 0;

    font-size:12px;
    line-height:1.7;
    letter-spacing:2px;
}

.cards{
    display:flex;
    justify-content:center;
    gap:20px;

    margin-top:28px;
}

.cards img{
    width:65px;
    height:90px;

    object-fit:contain;

    transition:.25s ease;
}

.cards img:hover{
    transform:scale(1.1);

    filter:
    brightness(1.1)
    drop-shadow(0 0 10px rgba(255,0,128,.35));
}

.footer{
    max-width:1200px;

    margin:0 auto;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:30px;

    padding:20px 20px 50px;
}

.badge{
    width:110px;
    height:120px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:
    linear-gradient(
        180deg,
        #ff4f87,
        #ff634f
    );

    clip-path:polygon(
        0 0,
        100% 0,
        100% 78%,
        50% 100%,
        0 78%
    );
}

.small{
    width:85%;
    font-size:11px;
    font-weight:900;
    line-height:1.1;
}

.bigbadge{
    font-family:'Anton';
    font-size:44px;
    line-height:1;
}

.footer-text{
    text-align:center;
}

.footer-text p{
    font-size:15px;
    letter-spacing:4px;
    margin-bottom:5px;
}

.footer-text h1{
    font-family:'Anton';
    font-size:60px;
    font-weight:400;
    line-height:1;

    color:#fff000;

    text-shadow:
    -4px 0 #ff0080,
    4px 0 #00ffff;
}

.merch{
    position:relative;

    padding:70px 20px;

    overflow:hidden;

    text-align:center;

    background:transparent;
}

.merch::before{
    display:none;
}

.merch > *{
    position:relative;
    z-index:2;
}

.merch-title{
    margin-bottom:55px;
}

.merch-title h2{
    font-family:'Anton';
    font-size:64px;
    font-weight:400;

    color:#fff000;

    text-shadow:
    -4px 0 #ff1493,
    4px 0 #00ffff;
}

.merch-container{
    max-width:1100px;

    margin:0 auto;

    display:flex;
    justify-content:space-between;

    gap:30px;
}

.item-link{
    text-decoration:none;
    color:inherit;
    width:33%;
    display:block;
}

.item{
    width:100%;
    cursor:pointer;

    transition:
    transform .35s ease,
    filter .35s ease;
}

.item:hover{
    transform:
    translateY(-10px)
    scale(1.03);
}

.item img{
    width:270px;
    margin-bottom:15px;

    transition:
    transform .35s ease,
    filter .35s ease;
}

.item:hover img{
    transform:scale(1.04);

    filter:
    brightness(1.08)
    drop-shadow(0 0 18px rgba(255,0,128,.35));
}

.item h3{
    font-size:13px;
    font-weight:900;
    line-height:1.5;
    letter-spacing:1px;

    margin-bottom:8px;

    transition:.3s ease;
}

.item:hover h3{
    color:#ff1493;
}

.item p{
    font-size:13px;
    font-weight:700;
    color:#fff000;

    transition:.3s ease;
}

.item:hover p{
    color:#00ffff;
}

@media (max-width:900px){

    .hero-header{
        height:150px;
    }

    .hero-header.shrink{
        height:95px;
    }

    .hero-logo{
        width:125px;
    }

    nav{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .main-container{
        flex-direction:column;
        text-align:center;

        padding-top:220px;
    }

    .images{
        width:100%;
        height:300px;
    }

    .offer{
        width:100%;
    }

    .big{
        font-size:140px;
    }

    .peso{
        font-size:50px;
        margin-top:28px;
    }

    .dec{
        font-size:40px;
        margin-top:18px;
    }

    .footer{
        flex-direction:column;
    }

    .footer-text h1{
        font-size:40px;
    }

    .merch-container{
        flex-direction:column;
        align-items:center;
    }

    .item{
        width:100%;
    }

    .item-link{
        width:100%;
    }

    .item img{
        width:60%;
    }

    .merch-title h2{
        font-size:42px;
    }

}