body{
    font-family: Arial, sans-serif;
}

/* HERO */

.hero{
    height: 100vh;
    position: relative;
    overflow: hidden;

    background:
    linear-gradient(rgba(0,0,0,0.72),
    rgba(0,0,0,0.78)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070&auto=format&fit=crop');

    background-size: cover;
    background-position: center;

    animation: heroZoom 18s ease-in-out infinite alternate;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.section-light {
    background: #f8f6f1;
}

.section-dark {
    background: #111111;
}

.section-label {
    color: #b08d3c;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.section-label.gold {
    color: #d6b15e;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1c1c1c;
    margin-top: 10px;
}

.section-subtitle {
    max-width: 650px;
    margin: 15px auto 0;
    color: #666;
    font-size: 1.1rem;
}

.service-card {
    background: white;
    padding: 35px 28px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #b08d3c;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.14);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.service-card h4 {
    font-weight: 800;
    margin-bottom: 12px;
    color: #111;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.stat-box {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
}

.stat-box h3 {
    color: #d6b15e;
    font-size: 2.2rem;
    font-weight: 800;
}

.stat-box p {
    color: #ddd;
    margin: 0;
}

.about-card {
    background: #f8f6f1;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.about-card h4 {
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.about-card p {
    color: #555;
    line-height: 1.7;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 62px;
    height: 62px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: white;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* NAVBAR PREMIUM */

.custom-navbar {
    background: transparent;
    padding: 22px 0;
    transition: all 0.35s ease;
}

.custom-navbar.scrolled {
    background: rgba(17, 17, 17, 0.94);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.custom-navbar .nav-link {
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-left: 12px;
}

.custom-navbar .nav-link:hover {
    color: #d6b15e;
}

.navbar-brand {
    font-size: 1.45rem;
}

/* HERO MEJORADO */

.hero h1 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.05;
}

.hero p {
    font-size: 1.25rem;
}

/* FOOTER */

.footer-premium {
    background: #080808;
    color: #ddd;
}

.footer-premium h4,
.footer-premium h5 {
    color: white;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-premium p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-premium a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.footer-premium a:hover {
    color: #d6b15e;
}

.footer-premium hr {
    border-color: rgba(255,255,255,0.12);
    margin: 35px 0 20px;
}

.footer-whatsapp {
    color: #d6b15e !important;
    font-weight: 700;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}
/* EQUIPO */

.team-card {
    background: white;
    padding: 35px 28px;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.14);
}

.team-img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, #111, #3a3a3a);
    border: 4px solid #d6b15e;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-img span {
    color: #d6b15e;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
}

.team-card h4 {
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
}

.team-role {
    color: #b08d3c !important;
    font-weight: 700;
    margin-bottom: 15px;
}

.team-card p {
    color: #666;
    line-height: 1.6;
}
/* CONTACTO */

.section-contact {
    background:
    linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.88)),
    url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.contact-card,
.info-card {
    background: rgba(255,255,255,0.96);
    padding: 38px;
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(0,0,0,0.28);
}

.info-card {
    background: rgba(17,17,17,0.92);
    color: white;
    border: 1px solid rgba(255,255,255,0.12);
}

.contact-card h4,
.info-card h4 {
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-card .form-control,
.contact-card .form-select {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    box-shadow: none;
    border-color: #b08d3c;
}

.contact-note {
    color: #777;
    font-size: 0.95rem;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.info-item span {
    font-size: 1.5rem;
}

.info-item strong {
    display: block;
    color: #d6b15e;
    margin-bottom: 3px;
}

.info-item p {
    margin: 0;
    color: #ddd;
}
/* ESTADISTICAS */

.stats-section {
    background: #0d0d0d;
}

.stat-item {
    padding: 20px;
}

.stat-item h2 {
    color: #d6b15e;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    color: #ddd;
    margin: 0;
    font-size: 1rem;
}

/* TESTIMONIOS */

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.14);
}

.testimonial-stars {
    color: #d6b15e;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-card h5 {
    margin-top: 20px;
    font-weight: 800;
    color: #111;
}
/* HERO PREMIUM EXTRA */

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(214, 177, 94, 0.55);
    color: #d6b15e;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 22px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 28px;
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
/* SCROLL INDICATOR */

.hero {
    position: relative;
}

.scroll-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.65);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    text-decoration: none;
}

.scroll-down span {
    width: 6px;
    height: 6px;
    background: #d6b15e;
    border-radius: 50%;
    animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}
/* ICONOS PREMIUM */

.service-icon {
    color: #b08d3c;
}

.info-item span {
    color: #d6b15e;
    min-width: 28px;
}

.whatsapp-float i {
    font-size: 2.1rem;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .custom-navbar {
        background: rgba(17, 17, 17, 0.96);
        padding: 14px 0;
    }

    .navbar-collapse {
        padding-top: 18px;
    }

    .custom-navbar .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .hero {
        min-height: 100vh;
        padding: 110px 0 70px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-logo {
        height: 52px;
    }

    .custom-navbar.scrolled .navbar-logo {
        height: 46px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.35rem;
        line-height: 1.12;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .hero-trust {
        font-size: 0.82rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card,
    .team-card,
    .testimonial-card,
    .contact-card,
    .info-card,
    .about-card {
        padding: 28px 22px;
    }

    .stat-item h2 {
        font-size: 2.25rem;
    }

    .navbar-logo {
        height: 42px;
    }

    .custom-navbar.scrolled .navbar-logo {
        height: 38px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 14px;
        right: 14px;
    }

    .whatsapp-float i {
        font-size: 1.8rem;
    }

    .scroll-down {
        bottom: 18px;
    }
    .hero {
    animation: none;
    background-size: cover;
    background-position: center;
}
}
/* BRAND LOGO */

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border: 2px solid #d6b15e;
    color: #d6b15e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.35rem;
}

@media (max-width: 576px) {
    .brand-mark {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .brand-text {
        font-size: 1.1rem;
    }
}
@keyframes heroZoom {
    from{
        background-size: 100%;
    }

    to{
        background-size: 108%;
    }
}
.navbar-logo {
    height: 72px;
    width: auto;
    object-fit: contain;

    filter:
    drop-shadow(0 0 10px rgba(214,177,94,0.15));

    transition: all 0.35s ease;
}

.custom-navbar.scrolled .navbar-logo {
    height: 58px;
}

@media (max-width: 576px) {

    .navbar-logo {
        height: 56px;
    }

    .custom-navbar.scrolled .navbar-logo {
        height: 48px;
    }

}
/* MAPA */

.map-container {
    border-radius: 18px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}