/* ============================================
   RESET & SYSTEM VARIABLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0e14;
    --bg-card: rgba(20, 26, 35, 0.7);
    --bg-card-border: rgba(255, 255, 255, 0.05);
    --gold: #c9a05b;
    --gold-gradient: linear-gradient(135deg, #c9a05b 0%, #ecd0a5 50%, #b38641 100%);
    --gold-hover: #e5c083;
    --gold-glow: rgba(201, 160, 91, 0.3);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.7);
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(201, 160, 91, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.02) 0%, transparent 40%);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    pointer-events: none;
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    mix-blend-mode: difference;
}

.cursor-ring {
    pointer-events: none;
    position: fixed;
    width: 35px;
    height: 35px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
    opacity: 0.4;
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed; inset: 0;
    background: var(--bg-dark);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-coin {
    font-size: 3rem;
    color: var(--gold);
    animation: loaderSpin 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--gold-glow));
}

@keyframes loaderSpin {
    0% { transform: rotateY(0deg) scale(1); }
    25% { transform: rotateY(90deg) scale(1.1); }
    50% { transform: rotateY(180deg) scale(1); }
    75% { transform: rotateY(270deg) scale(1.1); }
    100% { transform: rotateY(360deg) scale(1); }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #080b0f; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--bg-dark), var(--gold));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-hover); }

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed; top: 0; left: 0; width: 0%; height: 3px;
    background: var(--gold-gradient);
    z-index: 10000;
    box-shadow: 0 0 12px rgba(201, 160, 91, 0.5);
    transition: width 0.1s ease-out;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

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

.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   SCROLL REVEAL KEYS
   ============================================ */
.reveal, .reveal-left, .reveal-right, .reveal-bottom {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal { transform: translateY(20px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-bottom { transform: translateY(40px); }

.reveal.revealed, 
.reveal-left.revealed, 
.reveal-right.revealed, 
.reveal-bottom.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   BUTTONS & BADGES
   ============================================ */
.btn {
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 15px rgba(201, 160, 91, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 160, 91, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 160, 91, 0.3);
}

.badge {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background: var(--gold);
}

/* ============================================
   HEADER
   ============================================ */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8%;
    background: rgba(10, 14, 20, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 14px 8%;
    box-shadow: var(--shadow-md);
    background: rgba(10, 14, 20, 0.95);
    border-bottom: 1px solid rgba(201, 160, 91, 0.15);
}

.logo-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo-custom i {
    color: var(--gold);
    font-size: 1.4rem;
    transition: var(--transition-bounce);
}

.logo-custom:hover i {
    transform: rotate(-20deg) scale(1.2);
}

.desktop-menu { display: flex; gap: 30px; }

.desktop-menu a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.desktop-menu a:hover { color: #ffffff; }
.desktop-menu a:hover::after { width: 100%; }

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-icon:hover { transform: scale(1.1) rotate(90deg); }

.mobile-nav {
    display: none; flex-direction: column;
    background: rgba(10, 14, 20, 0.98);
    backdrop-filter: blur(20px);
    position: fixed; top: 70px; left: 0; width: 100%;
    padding: 24px; text-align: center;
    border-bottom: 1px solid rgba(201, 160, 91, 0.2);
    z-index: 999;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform 0.4s ease;
}

.mobile-nav.active { display: flex; transform: translateY(0); }

.mobile-nav a {
    padding: 16px 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-nav a:hover { color: #ffffff; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 160px 8% 80px;
    gap: 60px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg-particles {
    position: absolute; inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-content { flex: 1.2; }

.hero-content h1 {
    font-size: 3.6rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons { display: flex; gap: 20px; margin-bottom: 48px; }

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.hero-feature i {
    font-size: 1.6rem;
    color: var(--gold);
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-feature strong { display: block; font-size: 0.95rem; color: #ffffff; }
.hero-feature span { display: block; color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; }

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

/* Legal visual card with animated rings */
.legal-visual-card {
    position: relative;
    width: 320px;
    height: 400px;
    background: rgba(20, 26, 35, 0.5);
    border: 1px solid rgba(201, 160, 91, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
}

.legal-visual-card:hover {
    border-color: rgba(201, 160, 91, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(201, 160, 91, 0.15);
}

.visual-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201, 160, 91, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
}

/* Animated rings */
.visual-rings {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 160, 91, 0.1);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: ringExpand 4s ease-in-out infinite;
}

.ring-1 { width: 150px; height: 150px; animation-delay: 0s; }
.ring-2 { width: 250px; height: 250px; animation-delay: 1s; }
.ring-3 { width: 350px; height: 350px; animation-delay: 2s; }

@keyframes ringExpand {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

.scale-svg {
    width: 120px;
    height: 120px;
    color: var(--gold);
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(201, 160, 91, 0.3));
    animation: floatScale 6s ease-in-out infinite;
}

@keyframes floatScale {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.visual-tag {
    margin-top: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-hover);
    z-index: 2;
    border: 1px solid rgba(201, 160, 91, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(10, 14, 20, 0.6);
    position: relative;
    overflow: hidden;
}

.visual-tag::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,160,91,0.1), transparent);
    animation: shimmerTag 3s ease-in-out infinite;
}

@keyframes shimmerTag {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.visual-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(201,160,91,0.03), transparent 50%);
    animation: rotateShine 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateShine {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    background: rgba(14, 20, 29, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 8%;
    gap: 40px;
}

.feature-item {
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover { transform: translateY(-8px); }

.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 160, 91, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 160, 91, 0.15);
    transition: var(--transition);
}

.feature-item:hover .icon-wrap {
    background: var(--gold-gradient);
    border-color: transparent;
    box-shadow: 0 0 15px var(--gold-glow);
}

.feature-item:hover .icon-wrap i { color: var(--bg-dark); }

.feature-item i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.feature-item p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    display: flex;
    align-items: center;
    padding: 100px 8%;
    gap: 80px;
}

.about-text { flex: 1.2; }

.about-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-text .oab {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(201, 160, 91, 0.15) 100%);
}

.stats-bg-ornament {
    position: absolute;
    bottom: -30px; left: -30px;
    width: 150px; height: 150px;
    border: 1px solid rgba(201, 160, 91, 0.06);
    border-radius: 50%;
    pointer-events: none;
    animation: morphBlob 10s ease-in-out infinite;
}

@keyframes morphBlob {
    0%, 100% { border-radius: 50% 40% 60% 40% / 50% 60% 40% 50%; }
    50% { border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%; }
}

.stat {
    position: relative;
    z-index: 2;
}

.stat h3 {
    font-size: 2.8rem;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.stat-glow {
    position: absolute;
    top: -10px; right: -10px;
    width: 40px; height: 40px;
    background: radial-gradient(circle, rgba(201,160,91,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: statGlowPulse 3s ease-in-out infinite;
}

@keyframes statGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 100px 8%;
    background: #0b0f15;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,160,91,0.2), transparent);
}

.section-header { text-align: center; margin-bottom: 60px; }

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-top: 8px;
}

.section-header .line {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 16px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(201, 160, 91, 0.25);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

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

.service-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(201, 160, 91, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon-wrap {
    background: var(--gold-gradient);
    transform: scale(1.1) rotate(-10deg);
}

.service-card:hover .service-icon-wrap i { color: var(--bg-dark); }

.service-card i {
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
}

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

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-card a {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card a i { font-size: 0.75rem; margin-bottom: 0; transition: transform 0.3s; }
.service-card a:hover i { transform: translateX(4px); }

.card-shine {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.02), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover .card-shine { opacity: 1; }

/* ============================================
   WHATSAPP TOOLTIP
   ============================================ */
.whatsapp-tooltip {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: rgba(20, 26, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(201, 160, 91, 0.2);
    z-index: 998;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-tooltip.show { opacity: 1; transform: translateY(0) scale(1); }

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px; right: 24px;
    width: 16px; height: 16px;
    background: rgba(20, 26, 35, 0.95);
    border-right: 1px solid rgba(201, 160, 91, 0.2);
    border-bottom: 1px solid rgba(201, 160, 91, 0.2);
    transform: rotate(45deg);
    border-radius: 2px;
}

.tooltip-icon {
    color: #25D366;
    font-size: 1.2rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 80px 8% 30px;
    background: #06090d;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.footer-col a, .footer-col p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 0.95rem;
}

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

.footer-col.brand p {
    line-height: 1.7;
    margin-bottom: 24px;
    display: block;
}

.socials { display: flex; gap: 12px; }

.socials a {
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0;
    color: var(--text-muted);
}

.socials a:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 160, 91, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-bounce);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.pulse-animation { animation: pulseGlow 2s ease-in-out infinite; }

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 38px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .cursor-dot, .cursor-ring { display: none; }
    
    header { padding: 20px 5%; }
    header.scrolled { padding: 12px 5%; }
    .desktop-menu, header .header-cta { display: none; }
    .mobile-menu-icon { display: block; }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        padding-bottom: 60px;
        gap: 50px;
    }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-feature { justify-content: center; max-width: 320px; margin: 0 auto; }
    
    .about {
        flex-direction: column;
        padding-top: 60px; padding-bottom: 60px;
        gap: 50px;
    }
    .about-text { text-align: center; }
    .about-text h2 { font-size: 2.4rem; }
    .badge { margin-left: -20px; }
    
    .about-stats {
        width: 100%;
        max-width: 450px;
        flex-direction: row;
        justify-content: space-around;
        padding: 30px 15px;
    }
    .stat { text-align: center; }
    .stat h3 { font-size: 2.2rem; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    .btn { width: 100%; }
    .about-stats { flex-direction: column; gap: 30px; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .whatsapp-float {
        width: 50px; height: 50px;
        font-size: 1.6rem;
        bottom: 20px; right: 20px;
    }
    .back-to-top {
        bottom: 90px; right: 23px;
        width: 40px; height: 40px;
    }
    .whatsapp-tooltip { display: none; }
}
