:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #60A5FA;
    --secondary: #0F172A;
    --accent: #06B6D4;
    --dark: #020617;
    --dark-2: #0F172A;
    --dark-3: #1E293B;
    --text: #F1F5F9;
    --text-muted: #94A3B8;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #60A5FA 100%);
    --gradient-2: linear-gradient(135deg, #06B6D4 0%, #22D3EE 100%);
    --gradient-3: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
    --shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
    --shadow-lg: 0 20px 60px rgba(37, 99, 235, 0.3);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.4);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* LOADER */
.loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }

.loader-logo {
    width: 120px;
    height: 120px;
    max-width: 100%;
    object-fit: contain;
    animation: pulse-loader 1s ease-in-out infinite;
    margin-bottom: 20px;
}

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

.loader-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 2px;
    animation: loader-fill 1.5s ease forwards;
}

@keyframes loader-fill { to { width: 100%; } }
@keyframes pulse-loader { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* GRADIENT TEXT */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #60A5FA 0%, #FFFFFF 50%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: inline;
}

/* SECTION STYLES */
.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--white);
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-desc { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ANIMATIONS */
.animate-glow { animation: glow-pulse 2s ease-in-out infinite; }
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
    50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.6); }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-delay { animation: float 4s ease-in-out infinite 1s; }
.animate-float-delay-2 { animation: float 4s ease-in-out infinite 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.pulse-btn { animation: pulse-btn 2s ease-in-out infinite; }
@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 8px 50px rgba(37, 99, 235, 0.6); }
}

.pulse-icon { animation: pulse-icon 2s ease-in-out infinite; }
@keyframes pulse-icon {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
}

.pulse-badge { animation: pulse-badge 1.5s ease-in-out infinite; }
@keyframes pulse-badge { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.pulse-whatsapp { animation: pulse-whatsapp 2s ease-in-out infinite; }
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

.pulse-achievement { animation: pulse-achievement 3s ease-in-out infinite; }
@keyframes pulse-achievement {
    0%, 100% { transform: scale(1); border-color: rgba(37, 99, 235, 0.3); }
    50% { transform: scale(1.02); border-color: rgba(37, 99, 235, 0.6); }
}

.glow-card { transition: var(--transition); }
.glow-card:hover { box-shadow: var(--shadow-glow); border-color: var(--primary); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary { background: var(--gradient-1); color: var(--white); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5); }
.btn-primary i { transition: transform 0.3s; }
.btn-primary:hover i { transform: translateX(5px); }

.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4); background: #20BD5C; }

.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }

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

.navbar.scrolled {
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.logo-text { color: var(--white); }
.logo-highlight { color: var(--primary); }

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

.nav-links a {
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-links a:hover { color: var(--white); background: rgba(255, 107, 53, 0.15); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-whatsapp-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-whatsapp-nav:hover { background: #20BD5C; transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 28px; height: 3px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-gradient-2 {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    color: var(--white);
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.trust-avatars { display: flex; }

.trust-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--dark);
    margin-left: -12px;
    background: var(--dark-3);
}

.trust-avatars img:first-child { margin-left: 0; }
.trust-text { font-size: 0.95rem; color: var(--text-muted); }
.trust-number { color: var(--primary); font-weight: 700; font-size: 1.1rem; }

/* HERO VISUAL */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

.hero-image-wrapper { position: relative; z-index: 2; }

.hero-digital-graphic {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-glow-hero 3s ease-in-out infinite;
    overflow: visible;
}

.hero-logo-center {
    width: 160px;
    height: 160px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.graphic-circle.c1 { width: 360px; height: 360px; animation: rotate-slow 20s linear infinite; }
.graphic-circle.c2 { width: 430px; height: 430px; animation: rotate-slow 25s linear infinite reverse; border-color: rgba(0, 212, 170, 0.3); }
.graphic-circle.c3 { width: 500px; height: 500px; animation: rotate-slow 30s linear infinite; border-style: dashed; }

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

@keyframes pulse-glow-hero {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.4), 0 0 80px rgba(27, 42, 74, 0.3); }
    50% { box-shadow: 0 0 80px rgba(255, 107, 53, 0.6), 0 0 120px rgba(27, 42, 74, 0.4); }
}

.hero-card {
    position: absolute;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.hero-card i { font-size: 1.4rem; }
.hero-card span { font-size: 0.8rem; color: var(--text-muted); }
.hero-card strong { font-size: 1.1rem; color: var(--white); }

.card-1 { top: 20px; left: 10px; }
.card-1 i { color: var(--accent); }

.card-2 { bottom: 60px; left: -20px; }
.card-2 i { color: var(--primary); }

.card-3 { top: 50%; right: -10px; }
.card-3 i { color: #FFD93D; }

/* CLIENTS BAR */
.hero-clients-bar {
    background: rgba(17, 24, 39, 0.6);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    padding: 20px 0;
    margin-top: 60px;
}

.clients-scroll {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: hidden;
}

.clients-scroll > span { white-space: nowrap; font-weight: 600; color: var(--text-muted); font-size: 0.9rem; }

.client-logos { display: flex; gap: 40px; animation: scroll-logos 15s linear infinite; }
.client-logos span { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); white-space: nowrap; }
.client-logos i { font-size: 1.3rem; color: var(--primary); }

@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ABOUT */
.about { padding: 120px 0; position: relative; background: var(--dark-2); }

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

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

.about-img-wrapper { position: relative; height: 550px; }

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius);
    border: 3px solid var(--primary);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    display: block;
}

.about-content-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px 32px;
    z-index: 2;
}

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

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-text { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.floating-card {
    position: absolute;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.floating-card i { font-size: 1.2rem; }
.floating-card span { font-size: 0.85rem; font-weight: 600; color: var(--white); }

.fc-1 { top: 30px; right: -20px; }
.fc-1 i { color: #FFD93D; }

.fc-2 { bottom: 80px; right: 20px; }
.fc-2 i { color: var(--primary); }

.fc-3 { top: 50%; left: -20px; }
.fc-3 i { color: var(--accent); }

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

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }

.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon { color: var(--accent); font-size: 1.3rem; margin-top: 2px; }
.feature-item strong { display: block; font-size: 0.95rem; margin-bottom: 2px; color: var(--white); }
.feature-item span { font-size: 0.85rem; color: var(--text-muted); }

.about-signature { margin: 24px 0; padding-top: 24px; border-top: 1px solid rgba(255, 107, 53, 0.2); }
.signature-line { width: 80px; height: 3px; background: var(--gradient-1); margin-bottom: 12px; border-radius: 2px; }
.about-signature span { display: block; font-size: 1.5rem; font-weight: 700; font-family: 'Outfit', sans-serif; color: var(--white); }
.about-signature small { color: var(--text-muted); font-size: 0.9rem; }

/* 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(--primary), transparent);
}

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

.service-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-8px); border-color: rgba(37, 99, 235, 0.3); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, var(--dark-2) 100%);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-2);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-1);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--white); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }

.service-features { list-style: none; margin-bottom: 24px; }
.service-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 0.9rem; color: var(--text-muted); }
.service-features i { color: var(--accent); font-size: 0.8rem; }

.service-price {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

/* STATS */
.stats { padding: 100px 0; position: relative; overflow: hidden; background: linear-gradient(180deg, #020617 0%, #0F172A 50%, #020617 100%); }

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

.stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
}

.section-header.light .section-subtitle { 
    color: var(--primary-light); 
    font-size: 0.9rem; 
    letter-spacing: 4px; 
    text-transform: uppercase;
    font-weight: 700;
}

.section-header.light .section-title { 
    color: #ffffff !important; 
    font-size: clamp(2.2rem, 4vw, 3rem); 
    font-weight: 800;
    line-height: 1.3;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-bottom: 60px; }

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-card:hover { 
    transform: translateY(-8px); 
    border-color: var(--primary); 
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.stat-icon { 
    font-size: 2.5rem; 
    color: var(--primary); 
    margin-bottom: 16px; 
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-number::after { content: '+'; font-size: 2rem; }
.stat-label { font-size: 1rem; color: var(--text-muted); margin-bottom: 16px; font-weight: 500; }

.stat-bar { height: 6px; background: rgba(37, 99, 235, 0.15); border-radius: 3px; overflow: hidden; }
.stat-bar-fill { height: 100%; background: linear-gradient(90deg, #2563EB, #60A5FA); border-radius: 3px; transition: width 1.5s ease; width: 0; }

.achievements-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }

.achievement {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.achievement i { color: #FFD93D; }

/* PROCESS */
.process { padding: 120px 0; background: var(--dark-2); }

.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0.3;
}

.process-step { text-align: center; position: relative; }

.step-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--gradient-1);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
}

.step-content h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--white); }
.step-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* TESTIMONIALS */
.testimonials { padding: 120px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.testimonial-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(255, 107, 53, 0.3); box-shadow: var(--shadow); }

.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars i { color: #FFD93D; font-size: 0.95rem; }

.testimonial-card > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 24px; font-style: italic; line-height: 1.8; }

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 2px solid var(--primary);
}

.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--white); }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

/* CONTACT */
.contact { padding: 120px 0; background: var(--dark-2); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-card:hover { border-color: var(--primary); transform: translateX(5px); box-shadow: var(--shadow); }

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.whatsapp-icon { background: rgba(37, 211, 102, 0.1) !important; color: #25D366 !important; }

.contact-card h4 { font-size: 0.95rem; margin-bottom: 2px; color: var(--white); }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; }
.contact-card a { color: var(--text-muted); }
.contact-card a:hover { color: var(--primary); }

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

.social-link {
    width: 44px;
    height: 44px;
    background: var(--dark);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.map-container {
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    display: block;
}

.contact-form-wrapper {
    background: var(--dark);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-form h3 { font-size: 1.4rem; margin-bottom: 28px; color: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }

.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.7; }

.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-status.success { display: block; background: rgba(0, 212, 170, 0.1); border: 1px solid rgba(0, 212, 170, 0.3); color: var(--accent); }
.form-status.error { display: block; background: rgba(255, 107, 107, 0.1); border: 1px solid rgba(255, 107, 107, 0.3); color: #FF6B6B; }

/* FOOTER */
.footer { background: var(--dark); padding: 80px 0 0; position: relative; }

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    overflow: hidden;
}

.footer-wave svg { width: 100%; height: 100%; }
.footer-wave path { fill: var(--dark); }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-brand p { color: var(--text-muted); margin: 16px 0; font-size: 0.95rem; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover { background: var(--gradient-1); color: white; transform: translateY(-3px); }

.footer-links h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--white); }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links ul a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.footer-contact i { color: var(--primary); width: 20px; margin-top: 3px; }

.footer-bottom { text-align: center; padding: 24px 0; color: var(--text-muted); font-size: 0.9rem; }
.footer-bottom i { color: var(--primary); }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--dark-2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-5px); }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-wrapper { height: 400px; max-width: 500px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .process-timeline::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        padding: 80px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }
    .nav-links.active { right: 0; }
    .btn-whatsapp-nav { display: none; }
    .hero-title { font-size: 2.2rem; }
    .about-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }
    .achievements-row { gap: 16px; }
    .achievement { font-size: 0.8rem; padding: 10px 16px; }
    .about-img-wrapper { height: 350px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .section-title { font-size: 1.8rem; }
    .about-img-wrapper { height: 300px; }
    .about-content-card { bottom: -20px; left: 10px; padding: 16px 24px; }
    .floating-card { display: none; }
}