:root{
    --primary:#d39a3c;
    --primary-dark:#a97524;
    --black:#080808;
    --black-soft:#111111;
    --white:#ffffff;
    --text:#d8d8d8;
    --border:rgba(255,255,255,.08);
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--black);
    font-family:'Montserrat',sans-serif;
    color:var(--text);
    overflow-x:hidden;
}

h1,h2,h3,h4,h5{
    font-family:'Cormorant Garamond',serif;
    color:var(--white);
}

.section-pad{
    padding:110px 0;
}

/* NAVBAR */
.custom-navbar{
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.05);
    padding:16px 0;
    transition:.3s ease;
}

.navbar-brand{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    color:#fff !important;
    font-weight:700;
    letter-spacing:1px;
}

.navbar-brand span{
    color:var(--primary);
}

.nav-link{
    color:#fff !important;
    margin:0 10px;
    font-size:.95rem;
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0%;
    height:1px;
    background:var(--primary);
    left:0;
    bottom:-4px;
    transition:.3s ease;
}

.nav-link:hover::after{
    width:100%;
}

.btn-nav{
    background:var(--primary);
    color:#fff;
    padding:12px 24px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s ease;
    font-weight:600;
}

.btn-nav:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

/* HERO */
.hero-section{
    min-height:100vh;
    position:relative;
    background:url('../images/hero.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.55) 50%,
        rgba(0,0,0,.82) 100%
    );
}

.hero-kicker{
    display:inline-block;
    color:var(--primary);
    letter-spacing:3px;
    font-size:.8rem;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero-section h1{
    font-size:5rem;
    line-height:1;
    margin-bottom:25px;
}

.hero-section p{
    font-size:1.1rem;
    max-width:650px;
    line-height:1.9;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.btn-main{
    background:linear-gradient(135deg,var(--primary),#f0b34c);
    color:#fff;
    text-decoration:none;
    padding:16px 32px;
    border-radius:60px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    transition:.3s ease;
    box-shadow:0 10px 30px rgba(211,154,60,.25);
}

.btn-main:hover{
    transform:translateY(-3px);
    color:#fff;
}

.btn-outline-custom{
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    text-decoration:none;
    padding:16px 32px;
    border-radius:60px;
    transition:.3s ease;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#000;
}

.hero-wave{
    position:absolute;
    bottom:-2px;
    width:100%;
    left:0;
}

/* TITULOS */
.section-kicker{
    display:inline-block;
    color:var(--primary);
    letter-spacing:3px;
    font-size:.8rem;
    margin-bottom:15px;
    text-transform:uppercase;
}

.section-heading{
    max-width:850px;
    margin:auto;
}

.section-heading h2{
    font-size:4rem;
    margin-bottom:18px;
}

.section-heading p{
    line-height:1.9;
}

/* ABOUT */
.about-section{
    background:#0f0f0f;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:30px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.floating-card{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.08);
    padding:18px 24px;
    border-radius:18px;
    color:#fff;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
}

.floating-card i{
    color:var(--primary);
}

.about-section h2{
    font-size:4rem;
    margin-bottom:25px;
    line-height:1;
}

.about-section p{
    line-height:1.9;
    margin-bottom:20px;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.about-card{
    background:#141414;
    border:1px solid var(--border);
    border-radius:20px;
    padding:25px;
    transition:.3s ease;
}

.about-card:hover{
    transform:translateY(-6px);
    border-color:rgba(211,154,60,.3);
}

.about-card i{
    font-size:1.8rem;
    color:var(--primary);
    margin-bottom:15px;
}

.about-card span{
    display:block;
    color:#fff;
    font-weight:600;
}

/* SERVICIOS */
.services-section{
    background:#090909;
    position:relative;
}

.service-card{
    background:#121212;
    border:1px solid rgba(255,255,255,.06);
    border-radius:28px;
    padding:40px 30px;
    height:100%;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(211,154,60,.06),
        transparent
    );
    opacity:0;
    transition:.3s ease;
}

.service-card:hover::before{
    opacity:1;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(211,154,60,.25);
}

.service-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(211,154,60,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-icon i{
    color:var(--primary);
    font-size:2rem;
}

.service-card h4{
    font-size:2rem;
    margin-bottom:15px;
}

.service-card p{
    line-height:1.8;
    margin-bottom:0;
}

/* CTA */
.cta-section{
    padding:80px 0;
    background:
    linear-gradient(
        135deg,
        rgba(211,154,60,.15),
        rgba(0,0,0,.95)
    );
}

.cta-box{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:35px;
    padding:70px 40px;
    max-width:1000px;
    margin:auto;
}

.cta-box h2{
    font-size:4rem;
    margin-bottom:20px;
}

.cta-box p{
    max-width:750px;
    margin:auto;
    margin-bottom:35px;
    line-height:1.9;
}

/* GALERIA */
.gallery-section{
    background:#0c0c0c;
}

.gallery-img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:22px;
    transition:.4s ease;
}

.gallery-img:hover{
    transform:scale(1.03);
}

/* CONTACTO */
.contact-section{
    background:#090909;
}

.contact-section h2{
    font-size:4rem;
    margin-bottom:25px;
}

.contact-section p{
    line-height:1.9;
}

.contact-info{
    margin-top:35px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:25px;
}

.contact-item i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(211,154,60,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:1.2rem;
}

.contact-item span{
    display:block;
    color:#fff;
    font-weight:600;
    margin-bottom:5px;
}

.contact-item a{
    color:var(--text);
    text-decoration:none;
}

.contact-form{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:40px;
}

.form-control{
    background:#181818;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    min-height:58px;
    color:#fff;
    padding:15px 20px;
}

.form-control:focus{
    background:#181818;
    color:#fff;
    border-color:rgba(211,154,60,.5);
    box-shadow:none;
}

textarea.form-control{
    resize:none;
    min-height:180px;
}

.form-control::placeholder{
    color:#999;
}

/* FOOTER */
.footer{
    background:#050505;
    border-top:1px solid rgba(255,255,255,.05);
    padding:30px 0;
}

.footer p{
    color:#888;
}

.footer a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:10px;
    text-decoration:none;
    transition:.3s ease;
}

.footer a:hover{
    background:var(--primary);
    transform:translateY(-4px);
}

/* WHATSAPP */
.whatsapp-fancy{
    position:fixed;
    left:20px;
    bottom:20px;
    z-index:999;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:60px;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    box-shadow:0 15px 30px rgba(0,0,0,.25);
    transition:.3s ease;
}

.whatsapp-fancy:hover{
    transform:translateY(-4px) scale(1.03);
    color:#fff;
}

.whatsapp-fancy i{
    font-size:1.4rem;
}

/* RESPONSIVE */
@media(max-width:991px){

    .hero-section h1{
        font-size:3.8rem;
    }

    .about-section h2,
    .section-heading h2,
    .contact-section h2,
    .cta-box h2{
        font-size:3rem;
    }

    .hero-section{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .floating-card{
        right:0;
    }

}

@media(max-width:768px){

    .section-pad{
        padding:80px 0;
    }

    .hero-section h1{
        font-size:3rem;
    }

    .about-section h2,
    .section-heading h2,
    .contact-section h2,
    .cta-box h2{
        font-size:2.4rem;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .gallery-img{
        height:220px;
    }

    .contact-form{
        padding:30px 20px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-main,
    .btn-outline-custom{
        width:100%;
        justify-content:center;
    }

}

@media(max-width:576px){

    .hero-section h1{
        font-size:2.5rem;
    }

    .navbar-brand{
        font-size:1.7rem;
    }

    .service-card{
        padding:30px 24px;
    }

    .cta-box{
        padding:50px 25px;
    }

}