*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#0a0a0a;
    color:white;
    overflow-x:hidden;
}

/* HERO */

.hero{
    text-align:center;
    padding:70px 20px;
}

.logo{
    width:320px;
    max-width:85%;
    margin-bottom:8px;
}

.slogan{
    font-family:'Permanent Marker', cursive;
    font-size:2.5rem;
    color:#ff6b00;
    letter-spacing:2px;
    margin-bottom:35px;
    text-transform:uppercase;
}

.hero h1{
    font-family:'Bebas Neue', sans-serif;
    font-size:4rem;
    letter-spacing:3px;
    line-height:1.1;
    max-width:900px;
    margin:auto;
    font-weight:400;
}

.promo{
    font-size:1.7rem;
    margin-top:25px;
    color:#ff6b00;
    font-weight:700;
    max-width:850px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.5;
}

.hero p{
    opacity:0.95;
}

.cta{
    display:inline-block;
    margin-top:40px;
    padding:18px 45px;
    background:#ff6b00;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-family:'Bebas Neue', sans-serif;
    font-size:1.4rem;
    letter-spacing:1px;
    box-shadow:0 0 25px rgba(255,107,0,.4);
    transition:.3s;
}

.cta:hover{
    transform:scale(1.08);
}

/* GALERIA */

.galeria{
    padding:70px 20px;
}

.galeria h2{
    text-align:center;
    margin-bottom:15px;
    color:#ff6b00;
    font-family:'Bebas Neue', sans-serif;
    font-size:2.8rem;
    letter-spacing:2px;
}

.swipe-text{
    text-align:center;
    color:#ff6b00;
    font-family:'Bebas Neue', sans-serif;
    font-size:1.2rem;
    letter-spacing:2px;
    margin-bottom:20px;
    opacity:.85;
}

.slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    padding:20px 10px 30px 10px;
    -webkit-overflow-scrolling:touch;
}

.slider::-webkit-scrollbar{
    height:8px;
}

.slider::-webkit-scrollbar-track{
    background:#1a1a1a;
    border-radius:20px;
}

.slider::-webkit-scrollbar-thumb{
    background:#ff6b00;
    border-radius:20px;
}

.slider img{
    width:85vw;
    max-width:420px;
    height:500px;
    object-fit:cover;
    border-radius:25px;
    scroll-snap-align:center;
    flex-shrink:0;
    border:3px solid rgba(255,107,0,.25);
    box-shadow:0 15px 40px rgba(0,0,0,.5);
    transition:.35s ease;
}

.slider img:hover{
    transform:
    translateY(-10px)
    scale(1.08);

    border-color:#ff6b00;

    box-shadow:
    0 25px 70px rgba(255,107,0,.35);

    cursor:pointer;
}
.gallery-controls{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-bottom:20px;
}

.gallery-btn{

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:#ff6b00;

    color:white;

    font-size:1.5rem;

    cursor:pointer;

    transition:.3s;

    box-shadow:
    0 0 20px rgba(255,107,0,.3);
}

.gallery-btn:hover{

    transform:scale(1.12);

    box-shadow:
    0 0 30px rgba(255,107,0,.5);
}
/* UBICACION */

.ubicacion{
    text-align:center;
    padding:70px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.ubicacion h2{
    color:#ff6b00;
    margin-bottom:20px;
    font-family:'Bebas Neue', sans-serif;
    font-size:2.8rem;
    letter-spacing:2px;
}

.ubicacion p{
    margin-bottom:25px;
    line-height:1.6;
    font-size:1.1rem;
}

.ubicacion iframe{
    width:100%;
    max-width:900px;
    height:450px;
    border:none;
    border-radius:20px;
}

.btn-maps{
    display:block;
    width:fit-content;
    margin-top:25px;
    padding:15px 35px;
    background:#ff6b00;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-family:'Bebas Neue', sans-serif;
    font-size:1.3rem;
    letter-spacing:1px;
    transition:.3s;
}

.btn-maps:hover{
    transform:scale(1.05);
}

/* REDES */

.redes{
    text-align:center;
    padding:80px 20px;
}

.redes h2{
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
    line-height:1.5;
    font-family:'Bebas Neue', sans-serif;
    font-size:2.2rem;
    letter-spacing:1px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:60px;
}

.social-icons a{
    color:white;
    font-size:4rem;
    transition:.3s;
}

.social-icons a:hover{
    color:#ff6b00;
    transform:scale(1.15);
}

/* MOVIL */

@media(max-width:768px){

    .logo{
        width:260px;
    }

    .slogan{
        font-size:1.8rem;
        margin-bottom:25px;
    }

    .hero h1{
        font-size:3rem;
    }

    .promo{
        font-size:1.35rem;
    }

    .galeria h2,
    .ubicacion h2{
        font-size:2.2rem;
    }

    .slider img{
        width:85vw;
        height:420px;
    }

    .social-icons a{
        font-size:3rem;
    }

    .ubicacion iframe{
        height:350px;
    }
}