/* ==========================================
   LIMONAIA SOLUTIONS - MODERN CSS
   ========================================== */

/* === ROOT VARIABLES === */
:root {
    --color-primary: #A4D233;
    --color-primary-dark: #8AB828;
    --color-primary-light: #C0E05F;
    --color-secondary: #00D4FF;
    --color-accent: #FF6B6B;
    --color-purple: #9B59B6;
    --color-orange: #F39C12;
    --color-dark: #0A0A0A;
    --color-dark-gray: #1A1A1A;
    --color-gray: #333333;
    --color-light-gray: #999999;
    --color-white: #FFFFFF;
    --color-bg: #FAFAFA;
    --color-success: #28A745;
    --color-error: #DC3545;
    
    --font-primary: 'Poppins', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 8px 30px rgba(164, 210, 51, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray);
    background: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(164, 210, 51, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.logo-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 14px;
    position: relative;
    top: -2px;
    margin: 0 -2px;
}

.logo-circle i {
    font-size: 12px;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: var(--transition-fast);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--color-dark);
}

.dropdown-menu a:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* === PARTICLES CANVAS === */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* === GRADIENT ORBS === */
.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, -30px) scale(1.05); }
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-gray) 100%);
    z-index: -1;
    overflow: hidden;
}

/* Fallback background image if video doesn't load */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    transition: opacity 0.5s ease-in;
}

/* Hide background image when video loads */
.hero-background[data-video-loaded="true"]::before {
    opacity: 0;
}

/* === HERO VIDEO === */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    filter: brightness(0.8) saturate(0.9);
    transition: opacity 0.5s ease-in;
    /* Mantener fijo - no mover con scroll */
    will-change: opacity;
}

/* Show video when loaded - Increased visibility */
.hero-video[data-loaded="true"] {
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.60) 0%, rgba(26, 26, 26, 0.50) 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(164, 210, 51, 0.15) 0%, transparent 50%);
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(0, -50px) scale(0.9); }
    75% { transform: translate(-30px, -30px) scale(1.05); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-white);
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(164, 210, 51, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(164, 210, 51, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    position: relative;
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(164, 210, 51, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(164, 210, 51, 0); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge i {
    color: var(--color-primary);
}

.hero-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    border-radius: 2px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-white);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--color-white);
}

.hero-title .highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.circle-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.circle-progress {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s ease-in-out;
    filter: drop-shadow(0 0 8px rgba(164, 210, 51, 0.5));
}

.circle-progress.animated {
    stroke-dashoffset: calc(283 - (283 * var(--percent)) / 100);
}

.stat-circle .stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

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

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-dark);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-white:hover {
    background: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

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

/* === SECTIONS === */
section {
    padding: 100px 0;
    margin: 0;
    border: none;
    display: block;
}

/* Eliminar espacios entre secciones consecutivas */
section + section {
    margin-top: 0 !important;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(164, 210, 51, 0.1);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--color-light-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* === SERVICES OVERVIEW === */
.services-overview {
    background: var(--color-bg);
}

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

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-normal);
    box-shadow: 0 8px 25px rgba(164, 210, 51, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(164, 210, 51, 0.5);
}

/* Different gradient colors for each service */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #A4D233, #00D4FF);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #00D4FF, #9B59B6);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #9B59B6, #F39C12);
}

.service-icon i {
    font-size: 36px;
    color: var(--color-white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    color: var(--color-light-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-link:hover {
    gap: 12px;
}

.service-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 72px;
    font-weight: 900;
    color: var(--color-bg);
    line-height: 1;
}

/* === WHY CHOOSE US === */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f5 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164, 210, 51, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 184, 40, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
}

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

.why-text {
    font-size: 19px;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-list {
    list-style: none;
    margin-bottom: 35px;
}

.why-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.why-list i {
    color: var(--color-primary);
    font-size: 22px;
    flex-shrink: 0;
}

.why-list strong {
    display: block;
    color: var(--color-dark);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
}

.why-list p {
    color: var(--color-light-gray);
    font-size: 17px;
    line-height: 1.6;
}

.why-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Real Image Style */
.why-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.why-team-image:hover {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
}

.floating-card {
    position: absolute;
    background: var(--color-white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 3s infinite ease-in-out;
}

.card-1 {
    top: 50px;
    left: -30px;
}

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

.floating-card i {
    font-size: 28px;
    color: var(--color-primary);
}

.floating-card strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.floating-card span {
    font-size: 15px;
    color: var(--color-light-gray);
}

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

/* === PROCESS SECTION === */
.process-section {
    background: var(--color-bg);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    position: relative;
    padding: 30px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: var(--color-light-gray);
    line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A3A1A 50%, #0A0A0A 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(164, 210, 51, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo .logo-text,
.footer-logo .logo-subtitle {
    color: var(--color-white);
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--color-primary);
    margin-top: 3px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

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

/* === PAGE HEADER === */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-gray));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(164, 210, 51, 0.08) 0%, transparent 60%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--color-primary);
}

.breadcrumb i {
    font-size: 10px;
}

/* === SERVICE HEADER === */
.service-header {
    padding-bottom: 100px;
}

.service-badge-large {
    width: 100px;
    height: 100px;
    background: rgba(164, 210, 51, 0.15);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-badge-large i {
    font-size: 48px;
    color: var(--color-primary);
}

/* === CONTACT PAGE === */
.contact-section {
    padding: 80px 0;
}

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

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(164, 210, 51, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 24px;
    color: var(--color-primary);
}

.method-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.method-content a {
    color: var(--color-primary);
    font-weight: 500;
}

.method-content p {
    font-size: 14px;
    color: var(--color-light-gray);
    margin-top: 5px;
}

.social-connect {
    margin-top: 40px;
}

.social-connect h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    color: var(--color-gray);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-normal);
}

.social-links-large a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--color-light-gray);
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E5E5;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--color-gray);
    transition: var(--transition-normal);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.checkbox-group {
    margin-top: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-gray);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    display: block;
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.form-message.loading {
    display: block;
    background: #D1ECF1;
    color: #0C5460;
    border: 1px solid #BEE5EB;
}

.form-message.loading::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #0C5460;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* === MAP SECTION === */
.map-section {
    background: var(--color-bg);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-content {
    text-align: center;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.map-content i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.map-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--color-white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: rgba(164, 210, 51, 0.05);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
}

.faq-question i {
    color: var(--color-primary);
    font-size: 14px;
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--color-light-gray);
    line-height: 1.7;
}

/* === OTHER PAGE STYLES === */
.about-intro, .mission-vision, .team-section, .why-work,
.services-overview-page, .approach-section, .industries-section,
.service-intro, .service-offerings, .service-benefits {
    background: var(--color-white);
}

.about-intro:nth-child(even),
.services-overview-page:nth-child(even),
.service-offerings:nth-child(even) {
    background: var(--color-bg);
}

/* Grid layouts for various sections */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-values {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.value-item i {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.about-image .image-container {
    position: relative;
    height: 500px;
}

.stats-overlay {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: var(--color-white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 3s infinite ease-in-out;
}

.stat-box:first-child {
    margin-left: -40px;
    margin-top: 80px;
}

.stat-box:last-child {
    margin-left: -20px;
    animation-delay: 1.5s;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(164, 210, 51, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 24px;
    color: var(--color-primary);
}

.stat-info strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
}

.stat-info span {
    font-size: 13px;
    color: var(--color-light-gray);
}

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

.mv-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: rgba(164, 210, 51, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 36px;
    color: var(--color-primary);
}

.mv-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.mv-text {
    font-size: 15px;
    color: var(--color-light-gray);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.team-member {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.5);
}

.member-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-normal);
}

.team-member:hover .member-social {
    opacity: 1;
}

.member-social a {
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.member-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
}

.member-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.member-role {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 14px;
    color: var(--color-light-gray);
    line-height: 1.6;
}

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

.feature-card {
    background: var(--color-bg);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(164, 210, 51, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--color-primary);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: var(--color-light-gray);
    line-height: 1.6;
}

.service-detail-section {
    padding: 60px 0;
}

.service-detail-section.reverse .service-detail-grid {
    direction: rtl;
}

.service-detail-section.reverse .service-detail-content {
    direction: ltr;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-image .service-image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-placeholder i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.4);
}

.service-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(164, 210, 51, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.service-detail-description {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--color-gray);
}

.service-features i {
    color: var(--color-primary);
    font-size: 16px;
}

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

.approach-card {
    background: var(--color-white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-normal);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.approach-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 42px;
    font-weight: 900;
    color: rgba(164, 210, 51, 0.1);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: rgba(164, 210, 51, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.approach-icon i {
    font-size: 28px;
    color: var(--color-primary);
}

.approach-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.approach-description {
    font-size: 14px;
    color: var(--color-light-gray);
    line-height: 1.7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.industry-card {
    background: var(--color-bg);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
}

.industry-card:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
}

.industry-card i {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.industry-card:hover i {
    color: var(--color-white);
}

.industry-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    transition: var(--transition-normal);
}

.industry-card:hover h4 {
    color: var(--color-white);
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(164, 210, 51, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card .stat-icon i {
    font-size: 32px;
    color: var(--color-primary);
}

.stat-card .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.offering-card {
    background: var(--color-white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.offering-icon {
    width: 65px;
    height: 65px;
    background: rgba(164, 210, 51, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.offering-icon i {
    font-size: 30px;
    color: var(--color-primary);
}

.offering-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.offering-card p {
    font-size: 14px;
    color: var(--color-light-gray);
    line-height: 1.7;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--color-light-gray);
    line-height: 1.6;
}

/* === ANIMATIONS === */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

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

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

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

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* === LANGUAGE SWITCHER === */
.lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(164, 210, 51, 0.2);
}

.lang-btn {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray);
    background: transparent;
    border: 1px solid rgba(164, 210, 51, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(164, 210, 51, 0.05);
    transform: translateY(-1px);
}

.lang-btn.active {
    color: var(--color-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* Logo update */
.logo img {
    max-height: 35px; /* Reducido de 50px para mejor proporción */
    width: auto;
    transition: transform 0.3s ease;
}

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

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float-whatsapp 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

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

/* === TESTIMONIALS SECTION - NEW COMPACT DESIGN === */
.testimonials-section-new {
    padding: 100px 0 120px 0 !important;  /* ✅ Más espacioso */
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);  /* ✅ Fondo claro profesional */
    position: relative;
    overflow: visible;
    margin: 0 !important;
    border: none !important;
}

/* Barra decorativa vertical - inspirada en gut.agency */
.testimonial-decoration-bar {
    position: absolute;
    left: 80px;
    top: 20%;
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(164, 210, 51, 0.3) 20%,
        var(--color-primary) 50%,
        rgba(164, 210, 51, 0.3) 80%,
        transparent 100%
    );
    border-radius: 4px;
    z-index: 1;
    animation: barPulse 3s ease-in-out infinite;
}

@keyframes barPulse {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.05); }
}


.testimonials-section-new::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(164, 210, 51, 0.15), transparent 70%);
    border-radius: 50%;
    animation: breathe 8s ease-in-out infinite;
    z-index: 0;
}

.testimonials-section-new::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, #f1f5f9 0%, #0A0A0A 100%);  /* ✅ Transición suave de claro a oscuro */
    z-index: 0;
    pointer-events: none;
}

/* Orbe flotante cyan - agregado como clase separada */
.testimonials-section-new .testimonial-carousel::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent);
    border-radius: 50%;
    animation: breathe 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes breathe {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.testimonials-section-new .section-header {
    position: relative;
    z-index: 2;
}

.testimonials-section-new .section-title {
    color: var(--color-dark);  /* ✅ Texto oscuro en fondo claro */
    font-size: 48px;
    font-weight: 900;
}

.testimonials-section-new .section-tag {
    color: var(--color-primary);
    background: rgba(164, 210, 51, 0.15);  /* ✅ Fondo más visible */
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 60px auto 80px;
    padding: 0 60px;
    z-index: 2;
    overflow: visible;  /* ✅ Para que el orbe se vea */
}

.testimonial-slider {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-content {
    background: #ffffff;  /* ✅ Fondo blanco sólido */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(164, 210, 51, 0.1);  /* ✅ Sombra suave */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Borde animado al hover */
.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(164, 210, 51, 0), rgba(164, 210, 51, 0.5), rgba(164, 210, 51, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-content:hover::before {
    opacity: 1;
}

.testimonial-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(164, 210, 51, 0.3);
}

.testimonial-quote-big {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 140px;
    font-weight: 900;
    color: rgba(164, 210, 51, 0.08);  /* ✅ Más sutil */
    line-height: 1;
    font-family: Georgia, serif;
    z-index: 1;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 18px;
    animation: starPulse 2s ease-in-out infinite;
}

.testimonial-stars i:nth-child(1) { animation-delay: 0s; }
.testimonial-stars i:nth-child(2) { animation-delay: 0.1s; }
.testimonial-stars i:nth-child(3) { animation-delay: 0.2s; }
.testimonial-stars i:nth-child(4) { animation-delay: 0.3s; }
.testimonial-stars i:nth-child(5) { animation-delay: 0.4s; }

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

.testimonial-text-new {
    font-size: 22px;  /* ✅ Más grande */
    line-height: 1.7;
    color: #1a1a1a;  /* ✅ Texto oscuro */
    margin-bottom: 35px;
    font-weight: 400;
    font-style: normal;  /* ✅ Sin itálica */
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.author-avatar-new {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #7ba82a);  /* ✅ Gradiente más suave */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(164, 210, 51, 0.25);
    border: 3px solid rgba(164, 210, 51, 0.2);  /* ✅ Borde sutil */
}

.author-avatar-new i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.9);
}

.author-info-new h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;  /* ✅ Texto oscuro */
    margin-bottom: 4px;
}

.author-info-new p {
    font-size: 14px;
    color: #6b7280;  /* ✅ Gris medio */
}

/* Navigation Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);  /* ✅ Gris suave */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dot:hover {
    background: rgba(164, 210, 51, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: var(--color-primary);
    width: 32px;  /* ✅ Más ancho */
    border-radius: 8px;
}

.dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}

/* Navigation Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;  /* ✅ Fondo blanco */
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;  /* ✅ Ícono oscuro */
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-arrow:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(164, 210, 51, 0.3);
    border-color: var(--color-primary);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .hero-title { font-size: 48px; }
    .section-title { font-size: 36px; }
    .page-title { font-size: 42px; }
    
    /* Testimonials responsive */
    .testimonial-carousel {
        padding: 0 20px;
    }
    
    .testimonial-slider {
        height: 450px;
    }
    
    .testimonial-content {
        padding: 35px 30px;
    }
    
    .testimonial-quote-big {
        font-size: 80px;
        top: 10px;
        left: 20px;
    }
    
    .testimonial-text-new {
        font-size: 17px;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .testimonial-prev {
        left: -10px;
    }
    
    .testimonial-next {
        right: -10px;
    }
    
    /* Video optimization for mobile */
    .hero-video {
        opacity: 0.25;
        filter: brightness(0.5) saturate(0.6);
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.85) 100%);
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-bg);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--color-bg);
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .why-grid,
    .about-grid,
    .contact-grid,
    .service-detail-grid,
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .section-title { font-size: 28px; }
    .page-title { font-size: 32px; }
    .cta-title { font-size: 32px; }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        flex-direction: column;
    }
    
    .service-detail-section.reverse .service-detail-grid {
        direction: ltr;
    }
    
    section {
        padding: 60px 0;
    }
}

/* === PREMIUM EFFECTS === */

/* Glass morphism effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Neon glow effect */
.neon-glow {
    text-shadow: 0 0 10px var(--color-primary),
                 0 0 20px var(--color-primary),
                 0 0 30px var(--color-primary);
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Shimmer effect */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(164, 210, 51, 0.3), transparent);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

/* Pulse animation */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(164, 210, 51, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(164, 210, 51, 0);
    }
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

/* Tilt effect on hover */
.tilt-on-hover {
    transition: transform 0.3s ease;
}

.tilt-on-hover:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* Loading spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(164, 210, 51, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Gradient border animation */
@keyframes gradientBorder {
    0%, 100% { border-image-source: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)); }
    50% { border-image-source: linear-gradient(135deg, var(--color-primary-light), var(--color-primary)); }
}

.gradient-border-animated {
    border: 2px solid;
    border-image-slice: 1;
    animation: gradientBorder 3s ease infinite;
}

/* Text reveal animation */
@keyframes textReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.text-reveal {
    animation: textReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Typing cursor effect */
@keyframes blink {
    50% { opacity: 0; }
}

.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--color-primary);
}

/* Ripple effect on click */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Magnetic cursor effect (requires JS) */
.magnetic {
    transition: transform 0.2s ease-out;
}

/* Ken Burns zoom effect for images */
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.ken-burns {
    animation: kenBurns 20s ease-in-out infinite alternate;
}

/* Floating animation */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Rotating border */
@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotating-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, transparent, var(--color-primary), transparent);
    border-radius: inherit;
    animation: rotateBorder 3s linear infinite;
    z-index: -1;
}

/* Slide in animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

/* Stagger animation for lists */
.stagger-animation > * {
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

/* Morphing shapes */
@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.morph-shape {
    animation: morph 8s ease-in-out infinite;
}

/* Parallax layers */
.parallax-layer {
    transition: transform 0.3s ease-out;
}

/* Glitch effect */
@keyframes glitch {
    0% { clip-path: inset(40% 0 61% 0); }
    20% { clip-path: inset(92% 0 1% 0); }
    40% { clip-path: inset(43% 0 1% 0); }
    60% { clip-path: inset(25% 0 58% 0); }
    80% { clip-path: inset(54% 0 7% 0); }
    100% { clip-path: inset(58% 0 43% 0); }
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--color-primary);
    animation: glitch 0.3s infinite;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--color-primary-light);
    animation: glitch 0.3s reverse infinite;
}

/* 3D card flip */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Enhanced service card hover */
.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(164, 210, 51, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-primary);
}

/* Enhanced stat counter */
.stat-number.counting {
    animation: countPulse 0.3s ease-out;
}

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

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(164, 210, 51, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    border-radius: 4px;
    transition: width 1.5s ease-out;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Tooltip */
.tooltip {
    position: relative;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 8px 12px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 13px;
    white-space: nowrap;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.tooltip:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Badge with notification dot */
.badge-notification {
    position: relative;
}

.badge-notification::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: #FF3B30;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Skeleton loader */
@keyframes skeleton-loading {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

/* Print styles */
@media print {
    .navbar,
    .cta-section,
    .footer,
    .scroll-indicator {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* === CLIENTS SECTION STYLES === */
.clients-section {
    padding: 80px 0;
    background: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.clients-slider {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    padding: 20px 0;
}

.clients-track {
    display: flex;
    gap: 80px;
    animation: scrollLogos 35s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 2px solid var(--color-bg);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(164, 210, 51, 0.1), transparent);
    transition: left 0.5s;
}

.client-logo:hover::before {
    left: 100%;
}

.logo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
}

.logo-content i {
    font-size: 32px;
    color: var(--color-light-gray);
    transition: all var(--transition-normal);
}

.logo-content span {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gray);
    letter-spacing: 2px;
    transition: all var(--transition-normal);
}

.client-logo:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.client-logo:hover .logo-content i {
    color: var(--color-primary);
    transform: scale(1.1);
}

.client-logo:hover .logo-content span {
    color: var(--color-primary);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 6 - 80px * 6)); }
}

/* === NUMBERS SECTION STYLES === */
.numbers-section {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 80px 0 100px 0 !important;
    margin: -200px 0 0 0 !important;  /* ✅ Aumentado a -200px */
    border: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Forzar que no haya espacio entre testimonials y numbers */
.testimonials-section-new + .numbers-section {
    margin-top: 0 !important;
    border-top: none !important;
}

/* Eliminar cualquier gap del body o contenedores */
body section {
    display: block;
}

section + section {
    margin-top: 0 !important;
}

.numbers-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent);
    border-radius: 50%;
    animation: breathe 10s ease-in-out infinite reverse;
}

.numbers-section::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(164, 210, 51, 0.06), transparent);
    border-radius: 50%;
    animation: breathe 8s ease-in-out infinite;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.number-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.number-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(164, 210, 51, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

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

.number-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(164, 210, 51, 0.2);
}

.number-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(164, 210, 51, 0.2), rgba(0, 212, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: 0 8px 25px rgba(164, 210, 51, 0.3);
}

/* Unique gradient for each number card */
.number-card:nth-child(1) .number-icon {
    background: linear-gradient(135deg, rgba(164, 210, 51, 0.25), rgba(0, 212, 255, 0.25));
}

.number-card:nth-child(2) .number-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(155, 89, 182, 0.25));
}

.number-card:nth-child(3) .number-icon {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.25), rgba(243, 156, 18, 0.25));
}

.number-card:nth-child(4) .number-icon {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.25), rgba(255, 107, 107, 0.25));
}

.number-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
    filter: blur(10px);
}

.number-card:hover .number-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(164, 210, 51, 0.5);
}

.number-card:hover .number-icon::after {
    opacity: 0.6;
    animation: pulseGlow 2s infinite;
}

.number-icon i {
    font-size: 42px;
    color: var(--color-white);
    transition: var(--transition-normal);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.number-card:hover .number-icon i {
    color: var(--color-dark);
    transform: scale(1.1);
}

.number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    line-height: 1;
}

.number-value {
    font-size: 64px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    font-family: var(--font-primary);
}

.number-suffix {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    align-self: flex-start;
    margin-top: 8px;
}

.number-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}