/* ===== VARIABLES ===== */
:root {
    --primary: #f59e0b;
    --primary-light: #fbbf24;
    --primary-dark: #d97706;
    --accent: #fcd34d;
    --accent-light: #fde68a;
    --dark: #0f0a00;
    --dark-2: #1a1000;
    --dark-3: #2a1f0a;
    --gray-900: #302410;
    --gray-800: #4a3a1e;
    --gray-700: #655030;
    --gray-600: #8f7a50;
    --gray-400: #b8a878;
    --gray-300: #d8cca8;
    --gray-100: #f0e8d0;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-2: linear-gradient(135deg, #fbbf24 0%, #f87171 100%);
    --gradient-3: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(245,158,11,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background: var(--dark);
    color: var(--gray-300);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; cursor: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; cursor: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 35px;
    height: 35px;
    border: 1.5px solid var(--primary-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28),
                width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-follower.hover {
    width: 55px;
    height: 55px;
    border-color: var(--accent);
    background: rgba(245, 158, 11, 0.08);
}

@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
    body { cursor: auto; }
    a, button, input, select, textarea { cursor: auto; }
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    letter-spacing: 8px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--dark-3);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
    animation: preload 1.5s ease-in-out forwards;
}

@keyframes preload {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(15, 10, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }

.nav-logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.nav-cta {
    background: var(--gradient-1);
    color: var(--white) !important;
    border-radius: var(--radius-xl);
    padding: 10px 24px !important;
    font-weight: 600;
}

.nav-cta:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.nav-cta::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 8px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(245,158,11,0.15);
    }
    .nav-menu.open { right: 0; }
    .nav-link { width: 100%; text-align: left; padding: 12px 16px; }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245,158,11,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(252,211,77,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,158,11,0.08) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,158,11,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,158,11,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 6s infinite;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-200px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(252,211,77,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(252,211,77,0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245,158,11,0.5);
}

.btn-primary i { transition: transform 0.3s; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    background: rgba(245,158,11,0.08);
    transform: translateY(-3px);
}

.btn-full { width: 100%; justify-content: center; }

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-800);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray-600);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gray-800);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gradient-1);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* ===== SECTIONS BASE ===== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-800), transparent);
}

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

.service-card {
    background: rgba(30, 22, 5, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245,158,11,0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245,158,11,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 40px rgba(245,158,11,0.08);
}

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

.service-card.featured {
    border-color: rgba(245,158,11,0.2);
    background: rgba(245,158,11,0.06);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: var(--radius-xl);
}

.service-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-light);
    position: relative;
    z-index: 1;
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    opacity: 0.12;
}

.service-number {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-700);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-300);
}

.service-features li i {
    color: var(--accent);
    font-size: 0.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    transition: var(--transition);
}

.service-link:hover { color: var(--accent); gap: 12px; }

@media (max-width: 968px) {
    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-800), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual { position: relative; }

.about-image-wrapper { position: relative; }

.about-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-width: 400px;
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(30, 22, 5, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245,158,11,0.15);
    border-radius: var(--radius-md);
    animation: float 4s ease-in-out infinite;
}

.about-float-card i {
    font-size: 1.2rem;
    color: var(--accent);
}

.about-float-card strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.about-float-card span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.card-1 {
    top: 30px;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }

.about-text {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text strong { color: var(--white); }

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,158,11,0.1);
    border-radius: var(--radius-sm);
}

.value-icon i {
    font-size: 1rem;
    color: var(--primary-light);
}

.value h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.value p {
    font-size: 0.88rem;
    color: var(--gray-400);
}

@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-visual { order: -1; display: flex; justify-content: center; }
    .about-image { max-width: 300px; }
    .about-content .section-tag, .about-content .section-title { text-align: center; }
    .about-text { text-align: center; }
    .about-values { align-items: center; }
}

/* ===== PROCESS ===== */
.process {
    padding: 120px 0;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-800), transparent);
}

.process-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-800);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.step-marker {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-2);
    border: 2px solid var(--gray-800);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.step-marker span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-600);
    transition: var(--transition);
}

.process-step:hover .step-marker {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(245,158,11,0.2);
}

.process-step:hover .step-marker span {
    color: var(--primary-light);
}

.step-content {
    padding-top: 12px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
}

@media (max-width: 600px) {
    .process-step { gap: 20px; }
    .step-marker { width: 48px; height: 48px; min-width: 48px; }
    .process-line { left: 23px; }
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-800), transparent);
}

.contact-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: #25d366;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    margin-bottom: 60px;
}

.btn-whatsapp i { font-size: 1.4rem; }

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    background: #22c55e;
}

.contact-details-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,158,11,0.1);
    border-radius: var(--radius-sm);
}

.contact-icon i {
    font-size: 1rem;
    color: var(--primary-light);
}

.contact-item strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.88rem;
    color: var(--gray-400);
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.12);
    border-radius: var(--radius-sm);
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .contact-details-row { gap: 24px; }
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(245,158,11,0.08);
}

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

.footer-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 16px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
    font-size: 0.88rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(245,158,11,0.06);
    font-size: 0.82rem;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand p { margin: 16px auto 0; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--dark-2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    transform: translateX(0);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--dark-2);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-float i { font-size: 1.6rem; }
    .whatsapp-tooltip { display: none; }
}

/* ===== RESPONSIVE COMPLETO ===== */

/* Tablet */
@media (max-width: 968px) {
    .container { padding: 0 20px; }

    /* Hero */
    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .hero-actions { gap: 12px; margin-bottom: 40px; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.7rem; }
    .hero-scroll { display: none; }

    /* Sections */
    .services, .about, .process, .contact { padding: 80px 0; }
    .section-header { margin-bottom: 50px; }
    .section-desc { font-size: 0.95rem; }
}

/* Móvil */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Navbar */
    .nav-logo-img { height: 44px; }
    .navbar.scrolled .nav-logo-img { height: 38px; }
    .navbar { padding: 14px 0; }
    .navbar.scrolled { padding: 10px 0; }
    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 90px 28px 28px;
        border-left: none;
    }

    /* Hero */
    .hero { padding: 90px 16px 50px; }
    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 14px;
        gap: 8px;
        margin-bottom: 20px;
    }
    .hero-title { margin-bottom: 18px; }
    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 28px;
        line-height: 1.7;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        margin-bottom: 36px;
    }
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    .hero-stats {
        gap: 16px;
        width: 100%;
    }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.65rem; letter-spacing: 0.5px; }
    .stat-divider { height: 30px; }

    /* Sections */
    .services, .about, .process, .contact { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-tag { font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 12px; }

    /* Services */
    .service-card { padding: 28px 22px; }
    .service-title { font-size: 1.2rem; }
    .service-desc { font-size: 0.88rem; }

    /* About */
    .about-grid { gap: 36px; }
    .about-image { max-width: 260px; }
    .about-float-card { padding: 10px 14px; font-size: 0.8rem; }
    .about-float-card i { font-size: 1rem; }
    .about-float-card strong { font-size: 0.8rem; }
    .about-float-card span { font-size: 0.65rem; }
    .card-1 { top: 16px; right: -8px; }
    .card-2 { bottom: 20px; right: -12px; }
    .about-text { font-size: 0.92rem; }
    .about-values { gap: 16px; margin-top: 24px; }
    .value-icon { width: 38px; height: 38px; min-width: 38px; }
    .value h4 { font-size: 0.92rem; }
    .value p { font-size: 0.82rem; }

    /* Process */
    .process-step { gap: 16px; margin-bottom: 36px; }
    .step-marker { width: 44px; height: 44px; min-width: 44px; }
    .step-marker span { font-size: 0.8rem; }
    .process-line { left: 21px; }
    .step-content h3 { font-size: 1.1rem; }
    .step-content p { font-size: 0.88rem; }

    /* Contact */
    .contact-text { font-size: 0.92rem; margin-bottom: 28px; }
    .btn-whatsapp {
        padding: 16px 28px;
        font-size: 1rem;
        margin-bottom: 40px;
        width: 100%;
        justify-content: center;
    }
    .contact-details-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .contact-icon { width: 42px; height: 42px; min-width: 42px; }
    .contact-item strong { font-size: 0.82rem; }
    .contact-item p { font-size: 0.82rem; }
    .social-link { width: 40px; height: 40px; }

    /* Footer */
    .footer { padding: 40px 0 24px; }
    .footer-grid { gap: 28px; margin-bottom: 30px; }
    .footer-logo-img { height: 44px; margin: 0 auto; }
    .footer-brand p { font-size: 0.82rem; }
    .footer-links h4 { font-size: 0.88rem; margin-bottom: 14px; }
    .footer-links a { font-size: 0.82rem; }
    .footer-bottom { font-size: 0.75rem; padding-top: 18px; }
}
