/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#ffffff;
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
    
    padding-top:120px;
}


/* =========================
   VARIABLES
========================= */

:root{

    --orange:#ff7b00;
    --orange-light:#ff9d42;

    --black:#050505;
    --dark:#111111;

    --white:#ffffff;

}


/* =========================
   HEADER
========================= */

.site-header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    padding:10px 0;
    transition:all .3s ease;
}

.site-header.scrolled{

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(12px);

    box-shadow:
    0 0 15px rgba(255,123,0,.15);

}

.header-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}


/* =========================
   LOGO
========================= */

.site-logo{
    display:block;
    max-height:70px;
    width:auto;
    object-fit:contain;
}


/* =========================
   MENU DESKTOP
========================= */

.desktop-menu{

    display:flex;
    align-items:center;
    gap:30px;

}

.menu-link{

    color:var(--white);

    text-decoration:none;

    font-size:1rem;
    font-weight:600;

    transition:all .3s ease;

}

.menu-link:hover{

    color:var(--orange);

    text-shadow:
    0 0 10px rgba(255,123,0,.9),
    0 0 20px rgba(255,123,0,.6);

}


/* =========================
   HAMBURGUESA
========================= */

.hamburger{

    display:none;

    background:none;
    border:none;

    cursor:pointer;

}

.hamburger span{

    display:block;

    width:28px;
    height:3px;

    background:var(--white);

    margin:6px 0;

    border-radius:10px;

    transition:all .3s ease;

}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu{

    display:none;

    flex-direction:column;

    background:#111111;

    padding:20px;

}

.mobile-link{

    color:var(--white);

    text-decoration:none;

    margin:10px 0;

    font-size:1rem;

}


/* =========================
   HERO SECTION
========================= */

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:140px 0 80px;
}

.hero-content{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

}


/* =========================
   HERO TEXT
========================= */

.hero-text{

    flex:1;

}

.hero-text h1{

    font-size:4rem;
    line-height:1.1;

    margin-bottom:25px;

    color:var(--white);

    text-shadow:
    0 0 10px rgba(255,123,0,.6),
    0 0 25px rgba(255,123,0,.3);

}

.hero-text p{

    font-size:1.1rem;

    color:#cccccc;

    max-width:600px;

    line-height:1.7;

}


/* =========================
   TARJETA
========================= */

.hero-card{

    width:350px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,123,0,.4);

    backdrop-filter:blur(12px);

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 0 20px rgba(255,123,0,.15),
    0 0 40px rgba(255,123,0,.08);

    transition:all .3s ease;

}

.hero-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 0 25px rgba(255,123,0,.3),
    0 0 50px rgba(255,123,0,.15);

}

.card-image img{

    width:100%;
    display:block;

}

.card-info{

    padding:25px;

    text-align:center;

}

.card-info h2{

    font-size:1.6rem;

    margin-bottom:10px;

}

.card-info span{

    color:var(--orange-light);

}


/* =========================
   SERVICES
========================= */

.services-section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:2.8rem;

    text-shadow:
    0 0 15px rgba(255,123,0,.3);

}

.services-grid{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit, minmax(250px,1fr));

    gap:30px;

}

.service-card{

    background:#111111;

    border:1px solid rgba(255,123,0,.25);

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    transition:all .3s ease;

    cursor:pointer;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:var(--orange);

    box-shadow:
    0 0 20px rgba(255,123,0,.3),
    0 0 40px rgba(255,123,0,.15);

}

.service-card h3{

    font-size:1.3rem;

}


/* =========================
   CONTACTO
========================= */

.contact-section{

    padding:100px 0;

}

.contact-container{

    width:90%;
    max-width:800px;

    margin:auto;

}

.contact-form{

    background:#111111;

    padding:50px;

    border-radius:24px;

    border:1px solid rgba(255,123,0,.2);

}

.form-group{

    margin-bottom:25px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    background:#050505;

    border:1px solid rgba(255,123,0,.4);

    border-radius:14px;

    padding:16px;

    color:#ffffff;

    outline:none;

    transition:all .3s ease;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--orange);

    box-shadow:
    0 0 15px rgba(255,123,0,.25);

}

.contact-form textarea{

    resize:none;

}

.recaptcha-container{

    margin-bottom:30px;

    color:#aaaaaa;

}

.submit-btn{

    background:none;

    border:1px solid var(--orange);

    color:var(--white);

    padding:16px 40px;

    border-radius:14px;

    cursor:pointer;

    font-size:1rem;
    font-weight:600;

    transition:all .3s ease;

}

.submit-btn:hover{

    background:rgba(255,123,0,.08);

    box-shadow:
    0 0 15px rgba(255,123,0,.35),
    0 0 30px rgba(255,123,0,.15);

}


/* =========================
   FOOTER
========================= */

.site-footer{

    margin-top:80px;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(12px);

    border-top:1px solid rgba(255,123,0,.15);

    padding:40px 20px;

    text-align:center;

}

.footer-socials{

    display:flex;
    justify-content:center;
    gap:30px;

    margin-bottom:20px;

}

.social-link{

    color:#ffffff;

    text-decoration:none;

    transition:all .3s ease;

}

.social-link:hover{

    color:var(--orange);

    text-shadow:
    0 0 10px rgba(255,123,0,.8);

}

.footer-copy{

    color:#aaaaaa;

    font-size:.95rem;

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .hero-content{

        flex-direction:column;

        text-align:center;

    }

    .hero-text h1{

        font-size:3rem;

    }

    .hero-card{

        width:100%;
        max-width:380px;

    }

}


@media (max-width:768px){

    .site-header{
        padding:8px 0;
    }

    .header-container{
        height:75px;
    }

    .site-logo{
        max-height:55px;
        width:auto;
    }

    .hero-section{
        padding-top:120px;
    }
}