/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Colores adaptados del logo Brevetes VIP */
    --black: #050505;
    /* Negro más profundo */
    --black2: #0a0a0a;
    --black3: #141414;
    --gold: #D4AF37;
    /* Dorado clásico metálico */
    --gold2: #F3E5AB;
    /* Dorado claro para brillos */
    --gold3: #AA8222;
    /* Dorado oscuro/sombra */
    --white: #FFFFFF;
    --gray: #888888;
    --gray2: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Rajdhani', sans-serif;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold3);
    border-radius: 3px;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 6%;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    /* Usando rgba de --gold */
    transition: all .3s ease;
}

nav.scrolled {
    padding: 10px 6%;
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    transition: all 0.3s;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-logo span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Estilo especial para la palabra VIP en el logo de texto */
.nav-logo span .text-gold {
    background: linear-gradient(135deg, var(--gold2), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6px 20px 6px 6px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.nav-cta-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    animation: pulse-gold 2s infinite;
}

.nav-cta-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.nav-cta-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-cta-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.nav-cta-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: .3s;
}

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 6% 80px;
    gap: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212, 175, 55, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
}

/* Road line animation */
.road-lines {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 60%;
    background: repeating-linear-gradient(to bottom, var(--gold) 0px, var(--gold) 30px, transparent 30px, transparent 60px);
    opacity: .15;
    animation: roadMove 2s linear infinite;
}

@keyframes roadMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 60px;
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '●';
    font-size: .6rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

h1.hero-title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-title .gold {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 52px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold3));
    color: var(--black);
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: .5px;
    transition: all .3s;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 4px 15px rgba(0, 0, 0, .3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6), 0 8px 25px rgba(0, 0, 0, .4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    color: var(--white);
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all .3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    width: 100%;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px;
    letter-spacing: .5px;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 1200px;
    z-index: 1;
    opacity: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: all 0.4s;
}

.hero-visual:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.6);
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 100%);
    pointer-events: none;
}

/* ─── SECTION COMMON ─── */
section {
    padding: 100px 6%;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    max-width: 580px;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

.gold {
    color: var(--gold);
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0;
}

.divider.center {
    margin: 20px auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    width: 100px;
}

/* ─── SOBRE NOSOTROS ─── */
#sobre {
    background: linear-gradient(180deg, var(--black) 0%, var(--black2) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

#sobre::before {
    content: '';
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 65%);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sobre-image {
    position: relative;
}

.sobre-image .img-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.1);
    background: var(--black3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-image .img-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sobre-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold3));
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.sobre-badge .num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.sobre-badge .lbl {
    font-size: .75rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1px;
}

.sobre-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.icon-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all .3s;
}

.icon-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.icon-card .ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.icon-card p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5;
}

/* ─── MISION / VISION ─── */
#mision-vision {
    background: var(--black2);
    position: relative;
    overflow: hidden;
}

#mision-vision::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Modificado para usar el color dorado adaptado %23D4AF37 */
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mv-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.mv-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.mv-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.mv-card p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
}

/* ─── SERVICIOS ─── */
#servicios {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all .35s;
    cursor: default;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(0deg, rgba(212, 175, 55, 0.07) 0%, transparent 100%);
    transition: height .35s;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4), 0 0 40px rgba(212, 175, 55, 0.08);
}

.service-card:hover::after {
    height: 100%;
}

.service-ico {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: all .35s;
}

.service-card:hover .service-ico {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
}

.service-card .tag {
    display: inline-block;
    margin-top: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: .5px;
}

/* ─── BENEFICIOS ─── */
#beneficios {
    background: linear-gradient(135deg, var(--black2) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

#beneficios::before {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 65%);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.beneficio-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    transition: all .3s;
}

.beneficio-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3), 0 0 30px rgba(212, 175, 55, 0.07);
}

.ben-ico {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: all .3s;
}

.beneficio-card:hover .ben-ico {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.beneficio-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.beneficio-card p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

/* ─── TESTIMONIOS ─── */
#testimonios {
    background: var(--black);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.testi-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: all .3s;
}

.testi-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.12);
    line-height: 1;
}

.testi-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testi-text {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: .95rem;
}

.testi-role {
    font-size: .78rem;
    color: var(--gold);
}

/* ─── CONTACTO ─── */
#contacto {
    background: var(--black2);
    position: relative;
    overflow: hidden;
}

#contacto::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contacto-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contacto-info p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    background: rgba(255, 255, 255, .025);
    transition: all .3s;
    color: var(--white);
}

.contact-link:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(4px);
}

.contact-link .cl-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-link .cl-ico.wa {
    background: rgba(37, 211, 102, .15);
}

.contact-link .cl-ico.fb {
    background: rgba(66, 103, 178, .15);
}

.contact-link .cl-ico.ig {
    background: rgba(225, 48, 108, .15);
}

.contact-link .cl-ico.tt {
    background: rgba(255, 255, 255, .08);
}

.contact-link .cl-ico.loc {
    background: rgba(212, 175, 55, 0.15);
}

.cl-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 2px;
}

.cl-value {
    font-weight: 600;
    font-size: .95rem;
}

.contact-form {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 48px 40px;
}

.contact-form h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 8px;
    letter-spacing: .5px;
}

input,
select,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--white);
    padding: 13px 16px;
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    transition: all .3s;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, .25);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

select option {
    background: #1a1a1a;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gold), var(--gold3));
    color: var(--black);
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all .3s;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

/* ─── FOOTER ─── */
footer {
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 60px 6% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all .3s;
    color: var(--white);
}

.social-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .25s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
}

.footer-bottom span {
    color: var(--gold);
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ─── MOBILE NAV ─── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, .97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color .2s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 6%;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
    background: none;
    border: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-visual {
        width: 48%;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sobre-image {
        max-width: 400px;
    }

    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-logo img {
        width: 50px;
        height: 50px;
    }
    .nav-logo span {
        font-size: 1.1rem;
    }
    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.4rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }


    nav .nav-links,
    nav .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #hero {
        padding: 100px 6% 60px;
    }

    .hero-visual {
        display: block;
        border-radius: 12px;
    }

    #hero {
        padding: 100px 6% 40px;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    section {
        padding: 70px 6%;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

/* ─── GOLD LINE SEPARATOR ─── */
.gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* ─── FLOATING WA BUTTON ─── */
.wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.6rem;
    transition: all .3s;
    animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .7);
}

@keyframes waFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ─── REDES BANNERS ─── */
.redes-banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.redes-banner {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: all 0.4s;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 15px rgba(212, 175, 55, 0.3);
}
.redes-banner:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 40px rgba(212, 175, 55, 0.6);
}
.redes-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .nav-logo img {
        width: 50px;
        height: 50px;
    }
    .nav-logo span {
        font-size: 1.1rem;
    }
    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.4rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }

    .redes-banners-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
