*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#000;
    color:#fff;
}

a{
    text-decoration:none;
    color:inherit;
}

/* HEADER */

.header{
    width:100%;
    height:90px;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    border-bottom:1px solid #111;
}

.brand img{
    height:70px;
}

nav{
    display:flex;
    align-items:center;
    gap:38px;
}

nav a{
    color:#fff;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

nav a:hover{
    color:#ff5a00;
}

.wa-top{
    background:#25d366;
    color:#fff;
    padding:16px 34px;
    border-radius:999px;
    font-weight:800;
    font-size:18px;
    transition:.3s;
}

.wa-top:hover{
    transform:scale(1.05);
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:120px 7%;
    background:
    linear-gradient(90deg,rgba(0,0,0,.93) 0%,rgba(0,0,0,.78) 38%,rgba(0,0,0,.18) 100%),
    url('assets/hero.jpg') center/cover no-repeat;
}

.hero-text{
    max-width:650px;
}

.hero h1{
    font-size:110px;
    line-height:.9;
    font-weight:900;
}

.hero h1 span{
    color:#ff5a00;
}

.hero p{
    font-size:28px;
    color:#eee;
    line-height:1.4;
    margin:30px 0;
}

.badges{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:40px;
}

.badges span{
    background:rgba(0,0,0,.45);
    border:1px solid rgba(255,255,255,.15);
    padding:16px 28px;
    border-radius:999px;
    font-size:18px;
}

.main-btn{
    display:inline-block;
    background:#25d366;
    color:#fff;
    padding:22px 42px;
    border-radius:999px;
    font-size:30px;
    font-weight:900;
    transition:.3s;
}

.main-btn:hover{
    transform:scale(1.05);
}

/* BENEFICIOS */

.benefits{
    padding:90px 7%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    background:#050505;
}

.benefits article{
    background:#101010;
    border:1px solid #222;
    border-radius:24px;
    padding:35px;
    text-align:center;
}

.benefits span{
    font-size:48px;
}

.benefits h3{
    margin:18px 0;
    color:#ff5a00;
    font-size:24px;
}

.benefits p{
    color:#ccc;
    line-height:1.6;
}

/* PRODUCTOS */

.products{
    padding:100px 7%;
    background:#000;
}

.products h2{
    text-align:center;
    font-size:60px;
    margin-bottom:70px;
}

.products h2 span{
    color:#ff5a00;
}

.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#0d0d0d;
    border:1px solid #222;
    border-radius:25px;
    overflow:hidden;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#ff5a00;
}

.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card-body{
    padding:28px;
}

.card h3{
    font-size:30px;
    margin-bottom:15px;
}

.card p{
    color:#ccc;
    margin-bottom:18px;
    line-height:1.6;
}

.card a{
    display:inline-block;
    margin-top:10px;
    color:#ff5a00;
    font-weight:800;
    font-size:18px;
}

/* UBICACION */

.contact{
    padding:100px 7%;
    background:#050505;
    text-align:center;
}

.contact h2{
    font-size:68px;
    color:#ff5a00;
    margin-bottom:30px;
}

.contact p{
    font-size:28px;
    line-height:1.7;
    color:#eee;
}

.map-btn{
    display:inline-block;
    margin-top:30px;
    background:#25d366;
    padding:18px 40px;
    border-radius:999px;
    font-size:24px;
    font-weight:800;
}

.contact iframe{
    margin-top:50px;
    width:100%;
    height:500px;
    border:none;
    border-radius:30px;
}

/* FOOTER */

.footer{
    background:radial-gradient(circle at center,#151515 0%,#050505 60%,#000 100%);
    padding:70px 20px 90px;
    text-align:center;
    border-top:1px solid #222;
}

.footer-logo{
    height:95px;
    margin-bottom:35px;
}

.footer-location,
.footer-phone,
.footer-copy{
    color:#fff;
    font-size:26px;
    margin:22px 0;
    font-weight:500;
}

.footer-copy{
    color:#e5e5e5;
    margin-top:30px;
}

.socials{
    margin-top:55px;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.socials a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    width:390px;
    height:95px;
    border-radius:999px;
    color:#fff;
    font-size:34px;
    font-weight:900;
    box-shadow:0 12px 30px rgba(0,0,0,.45);
    transition:.3s;
}

.socials a:hover{
    transform:translateY(-5px) scale(1.02);
}

.socials img{
    width:60px;
    height:60px;
}

.facebook-btn{
    background:linear-gradient(135deg,#1d7df2,#0f4fbf);
}

.instagram-btn{
    background:linear-gradient(135deg,#ff7a00,#ff0069,#8a2be2);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .hero h1{
        font-size:85px;
    }

    .grid{
        grid-template-columns:repeat(2,1fr);
    }

    .benefits{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:900px){

    .header{
        flex-direction:column;
        height:auto;
        padding:20px;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .hero{
        text-align:center;
        justify-content:center;
        padding-top:180px;
        background-position:center;
    }

    .hero h1{
        font-size:68px;
    }

    .hero p{
        font-size:22px;
    }

    .badges{
        justify-content:center;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .benefits{
        grid-template-columns:1fr;
    }

    .contact h2{
        font-size:48px;
    }

    .contact p{
        font-size:22px;
    }

    .socials a{
        width:100%;
        max-width:420px;
        font-size:28px;
    }
}

@media(max-width:600px){

    .hero h1{
        font-size:52px;
    }

    .main-btn{
        width:100%;
        text-align:center;
        font-size:24px;
    }

    .badges span{
        width:100%;
    }

    .card img{
        height:220px;
    }

    .socials a{
        height:85px;
        font-size:24px;
    }

    .socials img{
        width:48px;
        height:48px;
    }
    @media(max-width:768px){

    .header{
        position:relative;
        height:auto;
        padding:15px;
    }

    .brand img{
        height:55px;
    }

    nav{
        gap:12px;
        justify-content:center;
    }

    nav a{
        font-size:14px;
    }

    .wa-top{
        padding:12px 22px;
        font-size:15px;
    }

    .hero{
        min-height:auto;
        padding:60px 20px;
        text-align:center;
        background-position:center right;
    }

    .hero h1{
        font-size:44px;
    }

    .hero p{
        font-size:18px;
    }

    .badges span{
        font-size:15px;
        padding:12px 16px;
    }

    .main-btn{
        font-size:18px;
        padding:16px 24px;
        width:100%;
    }

    .products h2,
    .contact h2{
        font-size:36px;
    }

    .grid,
    .benefits{
        grid-template-columns:1fr;
    }

    .card h3{
        font-size:22px;
    }

    .card p,
    .contact p{
        font-size:17px;
    }

    .contact iframe{
        height:300px;
    }

    .footer-logo{
        height:70px;
    }

    .footer-location,
    .footer-phone,
    .footer-copy{
        font-size:18px;
    }

    .socials a{
        width:100%;
        height:70px;
        font-size:20px;
    }

    .socials img{
        width:38px;
        height:38px;
    }

    .floating-wa{
        width:58px;
        height:58px;
        font-size:28px;
    }
}.footer{
    background:radial-gradient(circle at center,#181818 0%,#070707 55%,#000 100%) !important;
    padding:60px 20px 80px !important;
    text-align:center !important;
}

.footer-logo{
    height:90px !important;
    margin-bottom:25px !important;
}

.footer-location,
.footer-phone,
.footer-copy{
    font-size:22px !important;
    color:#fff !important;
    margin:16px 0 !important;
}

.socials{
    display:flex !important;
    justify-content:center !important;
    gap:24px !important;
    margin-top:40px !important;
    flex-wrap:wrap !important;
}

.socials a{
    width:330px !important;
    height:82px !important;
    border-radius:999px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:16px !important;
    color:#fff !important;
    font-size:28px !important;
    font-weight:900 !important;
}

.socials img{
    width:48px !important;
    height:48px !important;
}

.facebook-btn{
    background:linear-gradient(135deg,#1877f2,#0f4fbf) !important;
}

.instagram-btn{
    background:linear-gradient(135deg,#ff7a00,#ff0069,#8338ec) !important;
}

@media(max-width:768px){
    .socials a{
        width:100% !important;
        max-width:360px !important;
        height:72px !important;
        font-size:22px !important;
    }

    .socials img{
        width:38px !important;
        height:38px !important;
    }
}
}