/* ===================================
   Light House Agency - Styles
   Carrusel Servicios con Scroll Pinned
   Efectos Visuales de Alto Impacto
   =================================== */

/* CSS Variables */
:root {
    --color-white: #FFFFFF;
    --color-light: #F8FAFC;
    --color-blue-dark: #0A1628;
    --color-blue: #1E3A5F;
    --color-blue-light: #2D5A87;
    --color-yellow: #F4A300;
    --color-yellow-light: #FFB833;
    --color-gray: #64748B;
    --color-gray-light: #E2E8F0;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(244, 163, 0, 0.4);
    
    --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-blue-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* ===================================
   Preloader Premium
   =================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-blue-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden,
#preloader[style*="opacity: 0"] {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo-img {
    width: 100px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(244, 163, 0, 0.8));
}

.preloader-light-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(244, 163, 0, 0.3) 0%, transparent 70%);
    animation: light-pulse 2s ease-in-out infinite;
}

@keyframes light-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(244, 163, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(244, 163, 0, 0.8)); }
}

.loader {
    width: 60px;
    height: 60px;
    position: relative;
}

.loader::before,
.loader::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: loader-spin 1.5s ease-in-out infinite;
}

.loader::before {
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--color-yellow);
    border-right-color: var(--color-yellow);
}

.loader::after {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 3px solid transparent;
    border-bottom-color: var(--color-yellow-light);
    border-left-color: var(--color-yellow-light);
    animation-direction: reverse;
}

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

.preloader-text {
    margin-top: 30px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    overflow: hidden;
}

.preloader-text span {
    display: inline-block;
    animation: text-wave 1.5s ease-in-out infinite;
}

.preloader-text span:nth-child(1) { animation-delay: 0s; }
.preloader-text span:nth-child(2) { animation-delay: 0.1s; }
.preloader-text span:nth-child(3) { animation-delay: 0.2s; }
.preloader-text span:nth-child(4) { animation-delay: 0.3s; }
.preloader-text span:nth-child(5) { animation-delay: 0.4s; }
.preloader-text span:nth-child(6) { animation-delay: 0.5s; }
.preloader-text span:nth-child(7) { animation-delay: 0.6s; }
.preloader-text span:nth-child(8) { animation-delay: 0.7s; }
.preloader-text span:nth-child(9) { animation-delay: 0.8s; }
.preloader-text span:nth-child(10) { animation-delay: 0.9s; }

@keyframes text-wave {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-5px); opacity: 1; }
}

.preloader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.preloader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-yellow-light));
    width: 0%;
    animation: progress-fill 2s ease-out forwards;
}

@keyframes progress-fill {
    to { width: 100%; }
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 10px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.navbar-brand {
    position: relative;
    display: inline-block;
}

.logo-img {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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



.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    color: var(--color-white);
    padding: 10px 20px;
    position: relative;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--color-blue-dark);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--color-yellow);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===================================
   DROPDOWN NAV
   =================================== */
.dropdown-nav {
    position: relative;
}

.dropdown-toggle-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-indicator-nav {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown-nav:hover .dropdown-indicator-nav {
    transform: rotate(180deg);
}

.dropdown-menu-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(244, 163, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
}

.navbar:not(.scrolled) .dropdown-menu-nav {
    background: rgba(10, 22, 40, 0.95);
    border-color: rgba(244, 163, 0, 0.3);
}

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

.dropdown-menu-nav li {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;
}

.dropdown-nav:hover .dropdown-menu-nav li {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-nav:hover .dropdown-menu-nav li:nth-child(1) { transition-delay: 0.05s; }
.dropdown-nav:hover .dropdown-menu-nav li:nth-child(2) { transition-delay: 0.1s; }
.dropdown-nav:hover .dropdown-menu-nav li:nth-child(3) { transition-delay: 0.15s; }
.dropdown-nav:hover .dropdown-menu-nav li:nth-child(4) { transition-delay: 0.2s; }
.dropdown-nav:hover .dropdown-menu-nav li:nth-child(5) { transition-delay: 0.25s; }

.dropdown-menu-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--color-blue-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar:not(.scrolled) .dropdown-menu-nav li a {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-menu-nav li a i {
    font-size: 14px;
    color: var(--color-yellow);
    width: 20px;
    text-align: center;
}

.dropdown-menu-nav li a:hover {
    background: rgba(244, 163, 0, 0.1);
    color: var(--color-yellow);
    padding-left: 25px;
}

.dropdown-menu-nav li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--color-yellow);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu-nav li a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu-nav li:not(:last-child) a {
    border-bottom: 1px solid rgba(244, 163, 0, 0.1);
}

.navbar:not(.scrolled) .dropdown-menu-nav li:not(:last-child) a {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .dropdown-menu-nav {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent !important;
        padding-left: 20px;
    }
    
    .dropdown-nav.open .dropdown-menu-nav {
        max-height: 500px;
    }
    
    .dropdown-menu-nav li {
        opacity: 1;
        transform: none;
    }
    
    .dropdown-menu-nav li a {
        color: var(--color-white) !important;
        padding: 10px 15px;
    }
    
    .navbar.scrolled .dropdown-menu-nav li a {
        color: var(--color-blue-dark) !important;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
    overflow: hidden;
}

.aurora-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.aurora {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(30, 58, 95, 0.2) 0%, transparent 40%);
    animation: aurora-move 15s ease-in-out infinite;
}

@keyframes aurora-move {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5%, 5%) rotate(5deg); }
    50% { transform: translate(-5%, 10%) rotate(-5deg); }
    75% { transform: translate(10%, -5%) rotate(3deg); }
}

.aurora-2 {
    animation-delay: -5s;
    opacity: 0.7;
}

.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.4) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.2) 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
}

.orb-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.25) 0%, transparent 70%);
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

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

.light-beams {
    position: absolute;
    top: 0;
    right: 10%;
    width: 300px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(244, 163, 0, 0.3), transparent);
    animation: beam-sweep 8s ease-in-out infinite;
}

.light-beam:nth-child(1) { left: 20%; animation-delay: 0s; }
.light-beam:nth-child(2) { left: 40%; animation-delay: -2s; }
.light-beam:nth-child(3) { left: 60%; animation-delay: -4s; }
.light-beam:nth-child(4) { left: 80%; animation-delay: -6s; }

@keyframes beam-sweep {
    0%, 100% { opacity: 0; transform: translateY(-100%); }
    50% { opacity: 1; transform: translateY(100%); }
}

.floating-particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(244, 163, 0, 0.5);
    border-radius: 50%;
    animation: particle-float 10s ease-in-out infinite;
}

.floating-particle:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; }
.floating-particle:nth-child(2) { left: 15%; top: 60%; animation-delay: -1s; }
.floating-particle:nth-child(3) { left: 25%; top: 40%; animation-delay: -2s; }
.floating-particle:nth-child(4) { left: 35%; top: 80%; animation-delay: -3s; }
.floating-particle:nth-child(5) { left: 45%; top: 30%; animation-delay: -4s; }
.floating-particle:nth-child(6) { left: 55%; top: 70%; animation-delay: -5s; }
.floating-particle:nth-child(7) { left: 65%; top: 50%; animation-delay: -6s; }
.floating-particle:nth-child(8) { left: 75%; top: 10%; animation-delay: -7s; }
.floating-particle:nth-child(9) { left: 85%; top: 90%; animation-delay: -8s; }
.floating-particle:nth-child(10) { left: 90%; top: 25%; animation-delay: -9s; }
.floating-particle:nth-child(11) { left: 10%; top: 85%; animation-delay: -0.5s; }
.floating-particle:nth-child(12) { left: 80%; top: 55%; animation-delay: -2.5s; }

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/faro.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

/* Burbujas sutiles para Hero */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles .floating-particle {
    width: 5px;
    height: 5px;
    background: rgba(244, 163, 0, 0.5);
    border-radius: 50%;
    animation: bubble-float 25s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(244, 163, 0, 0.4);
}

.hero-particles .floating-particle:nth-child(1) { left: 10%; top: 100%; animation-delay: 0s; animation-duration: 25s; }
.hero-particles .floating-particle:nth-child(2) { left: 20%; top: 100%; animation-delay: -3s; animation-duration: 28s; }
.hero-particles .floating-particle:nth-child(3) { left: 30%; top: 100%; animation-delay: -6s; animation-duration: 26s; }
.hero-particles .floating-particle:nth-child(4) { left: 40%; top: 100%; animation-delay: -9s; animation-duration: 24s; }
.hero-particles .floating-particle:nth-child(5) { left: 50%; top: 100%; animation-delay: -12s; animation-duration: 27s; }
.hero-particles .floating-particle:nth-child(6) { left: 60%; top: 100%; animation-delay: -15s; animation-duration: 25s; }
.hero-particles .floating-particle:nth-child(7) { left: 70%; top: 100%; animation-delay: -18s; animation-duration: 29s; }
.hero-particles .floating-particle:nth-child(8) { left: 80%; top: 100%; animation-delay: -21s; animation-duration: 26s; }
.hero-particles .floating-particle:nth-child(9) { left: 90%; top: 100%; animation-delay: -24s; animation-duration: 24s; }
.hero-particles .floating-particle:nth-child(10) { left: 15%; top: 100%; animation-delay: -2s; animation-duration: 30s; }
.hero-particles .floating-particle:nth-child(11) { left: 85%; top: 100%; animation-delay: -5s; animation-duration: 28s; }
.hero-particles .floating-particle:nth-child(12) { left: 55%; top: 100%; animation-delay: -8s; animation-duration: 27s; }

@keyframes bubble-float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-400px) translateX(20px) scale(1.1);
        opacity: 0.4;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-120vh) translateX(-20px) scale(0.9);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    animation: none;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    overflow: hidden;
}

.hero-title .typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--color-yellow);
    margin-left: 5px;
    animation: cursor-blink 0.8s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-title .split-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(-90deg);
    animation: char-reveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes char-reveal {
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.text-gradient {
    background: linear-gradient(90deg, rgba(244, 163, 0, 0.7) 0%, rgba(255, 184, 51, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 184, 51, 0.7) 0%, rgba(244, 163, 0, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-title:hover .text-gradient::after {
    opacity: 1;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary-custom {
    padding: 15px 35px;
    background: var(--color-yellow);
    color: var(--color-blue-dark);
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

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

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

.btn-primary-custom:hover {
    background: var(--color-yellow-light);
    color: var(--color-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 163, 0, 0.4), 0 0 40px rgba(244, 163, 0, 0.2);
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to { transform: scale(4); opacity: 0; }
}

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

@keyframes btn-glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(244, 163, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(244, 163, 0, 0.6), 0 0 60px rgba(244, 163, 0, 0.3); }
}

.btn-outline-custom {
    padding: 15px 35px;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--color-white);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-white);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline-custom:hover::before {
    width: 100%;
}

.btn-outline-custom:hover {
    color: var(--color-blue-dark);
    border-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

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

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Section Common Styles
   =================================== */
.section-padding {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(244, 163, 0, 0.1);
    color: var(--color-yellow);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--color-blue-dark);
    margin-bottom: 20px;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-section .about-dots-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
    z-index: 0;
}

.about-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/faro.jpg') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.about-section .section-header {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-section .section-header.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-section .section-header.sticky {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    text-align: center;
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, transparent 100%);
}

.about-section .section-header.sticky.visible {
    transform: translateX(-50%);
}

.about-section .section-badge {
    background: rgba(244, 163, 0, 0.2);
}

.about-section .section-title {
    color: var(--color-white);
}

.about-section .section-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.about-header-container {
    text-align: center;
    margin-bottom: 40px;
}

.about-header-container .section-header {
    margin-bottom: 20px;
}

.about-header-container .section-header .section-title {
    font-size: 48px;
    font-weight: 700;
}

.about-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    text-align: center;
}

.about-carousel-container {
    position: relative;
    z-index: 10;
    padding-top: 200px;
}

.about-carousel-container.is-pinned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.about-carousel-container.is-unpinned {
    position: absolute;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
}

.about-carousel {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    margin-top: 100px;
}

.about-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 5%;
}

.about-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
}

.about-slide-image-wrapper {
    flex: 0 0 45%;
    position: relative;
    max-width: 500px;
}

.about-slide-content {
    flex: 0 0 48%;
    text-align: left;
    max-width: 550px;
}

.about-section .section-header {
    text-align: center;
}

.about-section .section-header .section-title {
    width: 100%;
}

.about-slide-image-wrapper {
    flex: 0 0 40%;
    position: relative;
}

.about-slide-image {
    width: 100%;
    max-width: 450px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-slide.active .about-slide-image {
    opacity: 1;
    transform: translateX(0);
}

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

.about-slide-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: 800;
    color: var(--color-yellow);
    opacity: 0.3;
    line-height: 1;
    z-index: 5;
}

.about-slide-content {
    flex: 0 0 50%;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.3s;
}

.about-slide.active.show-content .about-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.about-slide-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--color-yellow);
}

.about-slide-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-slide-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-slide-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.about-slide.active.show-content .about-slide-features li {
    opacity: 1;
    transform: translateX(0);
}

.about-slide.active.show-content .about-slide-features li:nth-child(1) { transition-delay: 0.4s; }
.about-slide.active.show-content .about-slide-features li:nth-child(2) { transition-delay: 0.5s; }
.about-slide.active.show-content .about-slide-features li:nth-child(3) { transition-delay: 0.6s; }

.about-slide-features li i {
    color: var(--color-yellow);
    font-size: 14px;
}

.about-slide-content .values-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.about-slide.active.show-content .values-badges {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.values-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.value-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(244, 163, 0, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
}

.value-badge i {
    color: var(--color-yellow);
}

.about-carousel-progress {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 101;
    background: rgba(10, 22, 40, 0.8);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(244, 163, 0, 0.2);
}

.about-progress-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-progress-dot:not(:last-child)::after {
    content: none;
}

.about-progress-dot.active {
    background: var(--color-yellow);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(244, 163, 0, 0.5);
}

.about-progress-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .about-slide { flex-direction: column; gap: 30px; padding: 20px; }
    .about-slide-image-wrapper, .about-slide-content { flex: 0 0 100%; }
    .about-slide-image { height: 220px; max-width: 100%; }
    .about-slide-content h3 { font-size: 26px; }
    .about-slide-number { font-size: 50px; top: 10px; left: 10px; }
    .about-carousel-container { padding-top: 150px; }
    .about-carousel { margin-top: 40px; }
}

@media (max-width: 576px) {
    .about-slide-image { height: 180px; }
    .about-slide-content h3 { font-size: 22px; }
    .about-slide-content p { font-size: 14px; }
    .about-carousel-container { padding-top: 130px; }
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section .dots-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
    z-index: 0;
}

.services-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/faro.jpg') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

/* ===================================
   Cursor Personalizado
   =================================== */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(244, 163, 0, 0.2);
    border-color: var(--color-yellow);
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.services-section .section-header {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-section .section-header.visible {
    opacity: 1;
    transform: translateX(0);
}

.services-section .section-header.sticky {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    text-align: center;
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, transparent 100%);
}

.services-section .section-header.sticky.visible {
    transform: translateX(-50%);
}

.services-section .section-badge {
    background: rgba(244, 163, 0, 0.2);
}

.services-section .section-title {
    color: var(--color-white);
}

.services-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.services-carousel-container {
    position: relative;
    z-index: 10;
    padding-top: 40px;
}

.services-carousel-container.is-pinned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.services-carousel-container.is-unpinned {
    position: absolute;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
}

.services-carousel {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    margin-top: 100px;
}

.service-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 40px;
}

.service-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.service-image-wrapper {
    flex: 0 0 40%;
    position: relative;
}

.service-image {
    width: 100%;
    max-width: 450px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-150px) scale(0.9);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-slide.active .service-image {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-slide.active .service-image img {
    animation: image-zoom-in 1.2s ease forwards;
}

@keyframes image-zoom-in {
    0% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.service-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: var(--font-primary);
    font-size: 100px;
    font-weight: 800;
    color: var(--color-yellow);
    opacity: 0.2;
    line-height: 1;
}

.service-content {
    flex: 0 0 50%;
    color: var(--color-white);
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--color-yellow);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-slide.active.show-content .service-content h3 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.service-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-slide.active.show-content .service-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-slide.active.show-content .service-features li {
    opacity: 1;
    transform: translateX(0);
}

.service-slide.active.show-content .service-features li:nth-child(1) { transition-delay: 0.6s; }
.service-slide.active.show-content .service-features li:nth-child(2) { transition-delay: 0.75s; }
.service-slide.active.show-content .service-features li:nth-child(3) { transition-delay: 0.9s; }

.service-features li i {
    color: var(--color-yellow);
    font-size: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-slide.active.show-content .service-features li i {
    opacity: 1;
    transform: scale(1);
}

.service-slide.active.show-content .service-features li:nth-child(1) i { transition-delay: 0.8s; }
.service-slide.active.show-content .service-features li:nth-child(2) i { transition-delay: 0.95s; }
.service-slide.active.show-content .service-features li:nth-child(3) i { transition-delay: 1.1s; }

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--color-yellow);
    color: var(--color-blue-dark);
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-slide.active.show-content .service-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1.2s;
}

.service-btn:hover {
    background: var(--color-yellow-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(244, 163, 0, 0.3);
}

.carousel-progress {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 101;
    background: rgba(10, 22, 40, 0.8);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(244, 163, 0, 0.2);
}

.progress-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.progress-dot:not(:last-child)::after {
    content: none;
}

.progress-dot.active {
    background: var(--color-yellow);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(244, 163, 0, 0.5);
}

.progress-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .service-slide { flex-direction: column; gap: 30px; padding: 20px; }
    .service-image-wrapper, .service-content { flex: 0 0 100%; }
    .service-image { height: 220px; max-width: 100%; }
    .service-content h3 { font-size: 26px; }
    .service-number { font-size: 70px; top: -10px; right: -10px; }
    .services-carousel-container { padding-top: 150px; }
    .services-carousel { margin-top: 40px; }
}

@media (max-width: 576px) {
    .service-image { height: 180px; }
    .service-content h3 { font-size: 22px; }
    .service-content p { font-size: 14px; }
    .services-carousel-container { padding-top: 130px; }
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
}

.contact-section .section-badge {
    background: rgba(244, 163, 0, 0.2);
}

.contact-section .section-title {
    color: var(--color-white);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.contact-title-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-title-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-text-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.contact-text-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-item.animated {
    opacity: 1;
    transform: translateX(0);
}

.contact-item:nth-child(1) { transition-delay: 0.3s; }
.contact-item:nth-child(2) { transition-delay: 0.5s; }
.contact-item:nth-child(3) { transition-delay: 0.7s; }

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(244, 163, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--color-yellow);
}

.contact-text h5 {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 5px;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 15px;
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.4s;
}

.contact-form-wrapper.animated {
    opacity: 1;
    transform: translateX(0);
}

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

.contact-form .form-control {
    padding: 15px 20px;
    border: 1px solid var(--color-gray-light);
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 3px rgba(244, 163, 0, 0.1);
}

.contact-form textarea {
    resize: none;
}

.btn-block {
    width: 100%;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-blue-dark);
    padding: 60px 0 30px;
}

.footer-logo {
    max-width: 180px;
    width: auto;
    height: auto;
    margin-bottom: 15px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

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

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

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-link {
    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);
}

.social-link:hover {
    background: var(--color-yellow);
    color: var(--color-blue-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* ===================================
   Scroll Animations
   =================================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.from-left { transform: translateX(-80px); }
.scroll-animate.from-left.animated { transform: translateX(0); }
.scroll-animate.from-right { transform: translateX(80px); }
.scroll-animate.from-right.animated { transform: translateX(0); }

/* ===================================
   Efectos Visuales Premium
   =================================== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.gradient-border {
    position: relative;
    background: var(--color-white);
    border-radius: 20px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--color-yellow), var(--color-blue), var(--color-yellow-light), var(--color-blue-light));
    background-size: 400% 400%;
    border-radius: 22px;
    z-index: -1;
    animation: gradient-rotate 3s ease infinite;
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-shimmer {
    background: linear-gradient(90deg, var(--color-yellow) 0%, var(--color-yellow-light) 50%, var(--color-yellow) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

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

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

@keyframes scale-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.reveal-mask {
    position: relative;
    overflow: hidden;
}

.reveal-mask::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--color-blue-dark);
    transform: translateX(0);
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-mask.animated::after {
    transform: translateX(101%);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 120%;
    top: -10%;
    will-change: transform;
}

.glow-text {
    text-shadow: 
        0 0 10px rgba(244, 163, 0, 0.5),
        0 0 20px rgba(244, 163, 0, 0.3),
        0 0 30px rgba(244, 163, 0, 0.2);
}

.morph-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(135deg, rgba(244, 163, 0, 0.1), rgba(30, 58, 95, 0.1));
    animation: morph 8s ease-in-out infinite;
    filter: blur(40px);
}

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

.line-draw {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 2s ease forwards;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

.counter-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-yellow);
    display: inline-block;
}

.distortion-hover {
    position: relative;
    overflow: hidden;
}

.distortion-hover::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(244, 163, 0, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.distortion-hover:hover::before {
    transform: translateX(100%);
}

.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::after {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 163, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spotlight:hover::after {
    opacity: 1;
}

.wave-text span {
    display: inline-block;
    animation: wave 1s ease-in-out infinite;
}

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

.glitch { position: relative; }

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

.glitch::before {
    animation: glitch-1 0.3s infinite;
    color: var(--color-yellow);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite;
    color: var(--color-blue-light);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(40% 0 40% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 2px); }
    80% { clip-path: inset(80% 0 0 0); transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 20% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(80% 0 0 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 2px); }
}

@media (max-width: 992px) {
    .hero-title { font-size: 42px; }
    .orb-1, .orb-2, .orb-3, .orb-4 { display: none; }
    .aurora { display: none; }
    .light-beams { display: none; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 32px; }
    .preloader-logo { width: 80px; height: 80px; }
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.testimonials-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: testimonials-orb-float 15s ease-in-out infinite;
}

.testimonials-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(244, 163, 0, 0.15) 0%, transparent 70%);
    top: 10%; left: 10%;
}

.testimonials-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(244, 163, 0, 0.1) 0%, transparent 70%);
    bottom: 10%; right: 10%;
    animation-delay: -5s;
}

@keyframes testimonials-orb-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.testimonials-section .section-header { position: relative; z-index: 2; }
.testimonials-section .section-title { color: var(--color-white); }
.testimonials-section .section-description { color: rgba(255, 255, 255, 0.7); }

.testimonials-carousel-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 163, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    scroll-snap-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: rgba(244, 163, 0, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(244, 163, 0, 0.1);
}

.testimonial-quote {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 40px;
    color: rgba(244, 163, 0, 0.3);
    animation: quote-pulse 3s ease-in-out infinite;
}

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

.testimonial-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

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

.testimonial-avatar {
    position: relative;
    width: 50px; height: 50px;
}

.avatar-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-blue-dark);
}

.avatar-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 163, 0, 0.5) 0%, transparent 70%);
    animation: avatar-glow 2s ease-in-out infinite;
}

@keyframes avatar-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.8; }
}

.testimonial-info h5 { font-size: 16px; color: var(--color-white); margin-bottom: 3px; }
.testimonial-info span { font-size: 13px; color: rgba(255, 255, 255, 0.6); }

.testimonial-rating {
    position: absolute;
    bottom: 20px; right: 20px;
    display: flex;
    gap: 3px;
}

.testimonial-rating i { font-size: 12px; color: var(--color-yellow); }

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-nav-btn {
    width: 50px; height: 50px;
    background: rgba(244, 163, 0, 0.2);
    border: 1px solid rgba(244, 163, 0, 0.3);
    border-radius: 50%;
    color: var(--color-yellow);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background: var(--color-yellow);
    color: var(--color-blue-dark);
    transform: scale(1.1);
}

.testimonials-dots { display: flex; gap: 10px; }

.testimonial-dot {
    width: 10px; height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--color-yellow);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .testimonial-card { flex: 0 0 300px; padding: 30px 20px; }
    .testimonial-text { font-size: 14px; }
}

/* ===================================
   Services Cards Section (Flip Cards)
   =================================== */
.services-cards-section {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.services-cards-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #ffffff;
}

.services-cards-section .section-header {
    position: relative;
    z-index: 10;
}

.services-cards-section .section-badge {
    color: #F4A300;
}

.services-cards-section .section-title {
    color: #0A1628;
    font-size: 42px;
    font-weight: 700;
}

.services-cards-section .section-description {
    color: #64748B;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.service-card {
    display: block;
    text-decoration: none;
    perspective: 1000px;
    height: 300px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg) scale(1.05);
    box-shadow: 0 25px 80px rgba(244, 163, 0, 0.3);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.service-card-front {
    background: linear-gradient(135deg, #1E3A5F 0%, #0A1628 100%);
    border: 1px solid rgba(244, 163, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(244, 163, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F4A300, #FFB833);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(244, 163, 0, 0.4);
}

.service-card-icon i {
    font-size: 32px;
    color: #000;
}

.service-card-title {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.service-card-back {
    background: rgba(255, 255, 255, 0.98);
    transform: rotateY(180deg);
    color: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.service-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

/* Watermark images for each service */
.service-card[data-service="pauta-digital"] .service-card-back::before {
    background-image: url('../img/marketingdigital.jpg');
}

.service-card[data-service="creacion-contenido"] .service-card-back::before {
    background-image: url('../img/trabajopc.jpg');
}

.service-card[data-service="community-management"] .service-card-back::before {
    background-image: url('../img/online.jpg');
}

.service-card[data-service="manejo-inversion"] .service-card-back::before {
    background-image: url('../img/estadisticas.jpg');
}

.service-card[data-service="analisis-reportes"] .service-card-back::before {
    background-image: url('../img/busqueda.png');
}

.service-card[data-service="desarrollo-web"] .service-card-back::before {
    background-image: url('../img/trabajopc.jpg');
}

.service-card-back > * {
    position: relative;
    z-index: 1;
}

.service-card-back h3 {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.service-card-back p {
    color: #4a4a6a;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-link {
    color: #F4A300;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card-link i {
    font-size: 12px;
    transition: transform 0.3s;
}

.service-card:hover .service-card-link i {
    transform: translateX(5px);
}

.service-card-link {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-link i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        height: 280px;
    }
}

/* ===================================
   Clients Section
   =================================== */
.clients-section {
    position: relative;
    padding: 80px 0;
    background: var(--color-blue-dark);
    overflow: hidden;
}

.clients-bg-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(244, 163, 0, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 90% 80%, rgba(244, 163, 0, 0.05) 0%, transparent 50%);
}

.clients-section .section-title { color: var(--color-white); }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.client-logo {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

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

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

.client-logo:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 163, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.client-logo-inner { position: relative; z-index: 1; }

.client-name {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.client-logo:hover .client-name { color: var(--color-yellow); }

.client-logo-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    background: radial-gradient(circle, rgba(244, 163, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.client-logo:hover .client-logo-glow { width: 200%; height: 200%; }

@media (max-width: 992px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .clients-grid { grid-template-columns: 1fr; } }

/* ===================================
   Footer Premium
   =================================== */
.footer-premium {
    position: relative;
    background: linear-gradient(180deg, var(--color-blue-dark) 0%, #050d18 100%);
    padding: 0;
    overflow: hidden;
}

.footer-light-waves {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 150px;
    overflow: hidden;
    z-index: 1;
}

.light-wave {
    position: absolute;
    width: 200%; height: 100%;
    left: -50%;
    background: linear-gradient(90deg, transparent, rgba(244, 163, 0, 0.1), transparent);
    animation: wave-sweep 8s ease-in-out infinite;
}

.light-wave-1 { animation-delay: 0s; }
.light-wave-2 { animation-delay: -2.5s; opacity: 0.7; }
.light-wave-3 { animation-delay: -5s; opacity: 0.5; }

@keyframes wave-sweep {
    0%, 100% { transform: translateX(-25%) rotate(-3deg); }
    50% { transform: translateX(25%) rotate(3deg); }
}

.footer-lighthouse-beam {
    position: absolute;
    top: 0; right: 10%;
    width: 300px; height: 200px;
    z-index: 2;
    pointer-events: none;
}

.beam-source {
    position: absolute;
    top: 0; right: 0;
    width: 30px; height: 30px;
    background: radial-gradient(circle, rgba(244, 163, 0, 0.9) 0%, rgba(244, 163, 0, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    animation: beam-pulse 3s ease-in-out infinite;
}

@keyframes beam-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 1; }
}

.beam-ray {
    position: absolute;
    top: 15px; right: 15px;
    width: 250px; height: 3px;
    background: linear-gradient(90deg, rgba(244, 163, 0, 0.6), transparent);
    transform-origin: right center;
    animation: ray-sweep 4s ease-in-out infinite;
}

.beam-ray-1 { transform: rotate(-30deg); animation-delay: 0s; }
.beam-ray-2 { transform: rotate(-15deg); animation-delay: -1s; }
.beam-ray-3 { transform: rotate(0deg); animation-delay: -2s; }

@keyframes ray-sweep {
    0%, 100% { opacity: 0.3; width: 150px; }
    50% { opacity: 0.8; width: 300px; }
}

.footer-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.footer-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(244, 163, 0, 0.5);
    border-radius: 50%;
    animation: particle-float 10s ease-in-out infinite;
}

.footer-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.footer-particle:nth-child(2) { left: 20%; top: 60%; animation-delay: -1s; }
.footer-particle:nth-child(3) { left: 30%; top: 40%; animation-delay: -2s; }
.footer-particle:nth-child(4) { left: 50%; top: 80%; animation-delay: -3s; }
.footer-particle:nth-child(5) { left: 60%; top: 30%; animation-delay: -4s; }
.footer-particle:nth-child(6) { left: 70%; top: 70%; animation-delay: -5s; }
.footer-particle:nth-child(7) { left: 80%; top: 50%; animation-delay: -6s; }
.footer-particle:nth-child(8) { left: 90%; top: 10%; animation-delay: -7s; }

.footer-newsletter {
    position: relative;
    z-index: 3;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content { margin-bottom: 20px; }

.newsletter-title {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-title i {
    color: var(--color-yellow);
    animation: bell-ring 2s ease-in-out infinite;
}

@keyframes bell-ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(10deg); }
    20%, 40% { transform: rotate(-10deg); }
    50% { transform: rotate(0); }
}

.newsletter-text { color: rgba(255, 255, 255, 0.7); font-size: 15px; }

.newsletter-form { display: flex; justify-content: flex-end; }

.newsletter-input-wrapper {
    display: flex;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(244, 163, 0, 0.3);
    border-radius: 50px;
    padding: 5px;
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--color-yellow);
    box-shadow: 0 0 20px rgba(244, 163, 0, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: var(--color-white);
    font-size: 15px;
    outline: none;
}

.newsletter-input::placeholder { color: rgba(255, 255, 255, 0.5); }

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--color-yellow);
    color: var(--color-blue-dark);
    font-family: var(--font-primary);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--color-yellow-light);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(244, 163, 0, 0.3);
}

.footer-main {
    position: relative;
    z-index: 3;
    padding: 60px 0;
}

.footer-brand { margin-bottom: 30px; }

.footer-logo { height: 60px; margin-bottom: 20px; }

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.social-icon-3d {
    position: relative;
    width: 45px; height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    perspective: 500px;
}

.social-icon-back {
    position: absolute;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-yellow);
    color: var(--color-blue-dark);
    border-radius: 50%;
    transform: translateZ(-20px) rotateY(180deg);
    backface-visibility: hidden;
}

.social-icon-3d:hover {
    transform: rotateY(180deg);
    background: var(--color-yellow);
    color: var(--color-blue-dark);
}

.footer-links-column, .footer-contact-column { cursor: pointer; }

.footer-column-title {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 0;
    position: relative;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--color-yellow);
    transition: width 0.3s ease;
}

.footer-column-title .dropdown-indicator {
    font-size: 12px;
    color: var(--color-yellow);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.footer-links-column:hover .footer-column-title .dropdown-indicator,
.footer-contact-column:hover .footer-column-title .dropdown-indicator {
    transform: rotate(180deg);
}

.footer-links-column:hover .footer-column-title::after,
.footer-contact-column:hover .footer-column-title::after {
    width: 100%;
}

.footer-links-list {
    list-style: none;
    padding: 0; margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.footer-links-column:hover .footer-links-list,
.footer-contact-column:hover .footer-links-list {
    max-height: 300px;
    opacity: 1;
    padding-top: 15px;
}

.footer-links-list li {
    margin-bottom: 12px;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links-column:hover .footer-links-list li,
.footer-contact-column:hover .footer-links-list li {
    transform: translateX(0);
    opacity: 1;
}

.footer-links-column:hover .footer-links-list li:nth-child(1) { transition-delay: 0.05s; }
.footer-links-column:hover .footer-links-list li:nth-child(2) { transition-delay: 0.1s; }
.footer-links-column:hover .footer-links-list li:nth-child(3) { transition-delay: 0.15s; }
.footer-links-column:hover .footer-links-list li:nth-child(4) { transition-delay: 0.2s; }
.footer-links-column:hover .footer-links-list li:nth-child(5) { transition-delay: 0.25s; }

.footer-links-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.link-icon {
    font-size: 10px;
    color: var(--color-yellow);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links-list a:hover { color: var(--color-yellow); padding-left: 5px; }
.footer-links-list a:hover .link-icon { opacity: 1; transform: translateX(0); }

.footer-contact-items {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.footer-contact-column:hover .footer-contact-items {
    max-height: 300px;
    opacity: 1;
    padding-top: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-contact-column:hover .footer-contact-item { transform: translateX(0); opacity: 1; }
.footer-contact-column:hover .footer-contact-item:nth-child(1) { transition-delay: 0.05s; }
.footer-contact-column:hover .footer-contact-item:nth-child(2) { transition-delay: 0.1s; }
.footer-contact-column:hover .footer-contact-item:nth-child(3) { transition-delay: 0.15s; }

.contact-icon-glow {
    width: 45px; height: 45px;
    background: rgba(244, 163, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-yellow);
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.contact-icon-glow::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(244, 163, 0, 0.3) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-contact-item:hover .contact-icon-glow::after { opacity: 1; }

.contact-detail { display: flex; flex-direction: column; }

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-detail a, .contact-detail span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-detail a:hover { color: var(--color-yellow); }

.footer-bottom-premium {
    position: relative;
    z-index: 3;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text { color: rgba(255, 255, 255, 0.5); font-size: 14px; margin: 0; }

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a { color: rgba(255, 255, 255, 0.5); font-size: 14px; transition: color 0.3s ease; }
.footer-bottom-links a:hover { color: var(--color-yellow); }
.footer-bottom-links .separator { color: rgba(255, 255, 255, 0.3); }

.footer-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.footer-decoration-1 { width: 400px; height: 400px; background: rgba(244, 163, 0, 0.05); bottom: -100px; left: -100px; }
.footer-decoration-2 { width: 300px; height: 300px; background: rgba(244, 163, 0, 0.03); top: 50%; right: -50px; }

.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--color-yellow);
    color: var(--color-blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(244, 163, 0, 0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(244, 163, 0, 0.4); }

.back-to-top-glow {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(244, 163, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: back-top-glow 2s ease-in-out infinite;
}

@keyframes back-top-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

@media (max-width: 992px) {
    .footer-newsletter .row { flex-direction: column; text-align: center; }
    .newsletter-form { justify-content: center; margin-top: 20px; }
    .newsletter-input-wrapper { max-width: 100%; }
    .footer-main .col-lg-4 { margin-bottom: 40px; }
    .footer-lighthouse-beam { display: none; }
    .footer-links-column .footer-links-list, .footer-contact-column .footer-contact-items { max-height: 0; opacity: 0; }
    .footer-links-column.active .footer-links-list, .footer-contact-column.active .footer-contact-items { max-height: 300px; opacity: 1; padding-top: 15px; }
    .footer-links-column.active .footer-links-list li, .footer-contact-column.active .footer-contact-item { transform: translateX(0); opacity: 1; }
    .footer-column-title { background: rgba(255, 255, 255, 0.05); padding: 15px 20px; border-radius: 10px; margin-bottom: 5px; }
}

@media (max-width: 768px) {
    .footer-bottom-premium .row { flex-direction: column; text-align: center; gap: 15px; }
    .footer-bottom-links { justify-content: center; }
    .footer-social-premium { justify-content: center; }
    .footer-brand { text-align: center; }
    .footer-column-title::after { left: 50%; transform: translateX(-50%); }
    .footer-links-column, .footer-contact-column { text-align: center; }
    .footer-links-list a { justify-content: center; }
    .footer-contact-item { justify-content: center; }
}

@media (max-width: 576px) {
    .newsletter-input-wrapper { flex-direction: column; border-radius: 20px; padding: 10px; }
    .newsletter-input { text-align: center; padding: 12px 15px; }
    .newsletter-btn { width: 100%; justify-content: center; border-radius: 50px; }
}

/* ===================================
   Welding Text Effect
   =================================== */
.welding-text { display: inline; position: relative; }

.welding-text .welding-char {
    display: inline-block;
    opacity: 0;
    color: rgba(255, 255, 255, 0.6);
    transition: opacity 0.1s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.welding-text .welding-char.revealed { opacity: 1; }

.welding-text .welding-char.active {
    color: var(--color-yellow);
    text-shadow: 0 0 10px rgba(244, 163, 0, 0.9), 0 0 20px rgba(244, 163, 0, 0.7), 0 0 30px rgba(244, 163, 0, 0.5);
}

.welding-text .welding-char.fade { color: rgba(255, 255, 255, 0.6); text-shadow: none; }

.welding-spark {
    position: absolute;
    width: 8px; height: 8px;
    background: radial-gradient(circle, #fff 0%, var(--color-yellow) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.welding-spark.active {
    opacity: 1;
    animation: spark-pulse 0.15s ease-in-out infinite;
}

@keyframes spark-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

/* ===================================
   Marketing Sphere
   =================================== */
.marketing-sphere-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 500px;
    margin: 0 auto;
}

.sphere-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 150px; height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244, 163, 0, 0.2), rgba(255, 184, 51, 0.15));
    box-shadow: 0 0 40px rgba(244, 163, 0, 0.3), inset 0 0 25px rgba(244, 163, 0, 0.2);
    animation: sphere-pulse 4s ease-in-out infinite;
}

.sphere-inner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 70%);
}

.sphere-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 163, 0, 0.15) 0%, transparent 70%);
    animation: glow-rotate 6s linear infinite;
}

.sphere-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: auto;
    filter: drop-shadow(0 0 15px rgba(244, 163, 0, 0.5));
    z-index: 5;
}

.sphere-ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(244, 163, 0, 0.15);
    transform: translate(-50%, -50%);
}

.ring-1 { width: 200px; height: 200px; margin: -100px 0 0 -100px; animation: ring-rotate 15s linear infinite; }
.ring-2 { width: 280px; height: 280px; margin: -140px 0 0 -140px; animation: ring-rotate 20s linear infinite reverse; }
.ring-3 { width: 360px; height: 360px; margin: -180px 0 0 -180px; animation: ring-rotate 25s linear infinite; }

/* ===================================
   ORBIT ICONS - Sin hover, sin animación
   =================================== */
.orbit-icon {
    position: absolute;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(244, 163, 0, 0.2), rgba(255, 184, 51, 0.1));
    border: 2px solid var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(244, 163, 0, 0.3), inset 0 0 10px rgba(244, 163, 0, 0.15);
    cursor: default;
}

/* SIN animación, SIN hover */
.orbit-icon:hover {
    transform: none;
    box-shadow: 0 0 15px rgba(244, 163, 0, 0.3), inset 0 0 10px rgba(244, 163, 0, 0.15);
}

.orbit-icon i {
    font-size: 20px;
    color: var(--color-yellow);
    text-shadow: 0 0 5px rgba(244, 163, 0, 0.3);
}

.orbit-icon span {
    position: absolute;
    bottom: -25px; left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.orbit-icon-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-icon-2 { top: 50%; right: 0; transform: translateY(-50%); }
.orbit-icon-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-icon-4 { top: 50%; left: 0; transform: translateY(-50%); }
.orbit-icon-5 { top: 15%; right: 15%; }
.orbit-icon-6 { bottom: 15%; left: 15%; }
.orbit-icon-7 { top: 15%; left: 15%; }
.orbit-icon-8 { bottom: 15%; right: 15%; }

@keyframes sphere-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(244, 163, 0, 0.3), inset 0 0 25px rgba(244, 163, 0, 0.2); transform: translate(-50%, -50%) scale(1); }
    50% { box-shadow: 0 0 50px rgba(244, 163, 0, 0.4), inset 0 0 35px rgba(244, 163, 0, 0.25); transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes glow-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 992px) {
    .marketing-sphere-container { height: 350px; max-width: 350px; }
    .sphere-core { width: 100px; height: 100px; }
    .sphere-inner { width: 80px; height: 80px; }
    .sphere-glow { width: 120px; height: 120px; }
    .sphere-logo { width: 50px; }
    .ring-1 { width: 140px; height: 140px; margin: -70px 0 0 -70px; }
    .ring-2 { width: 200px; height: 200px; margin: -100px 0 0 -100px; }
    .ring-3 { width: 260px; height: 260px; margin: -130px 0 0 -130px; }
    .orbit-icon { width: 40px; height: 40px; }
    .orbit-icon i { font-size: 16px; }
    .orbit-icon span { font-size: 8px; bottom: -20px; }
}

/* ===================================
   Responsive General
   =================================== */
@media (max-width: 992px) {
    .navbar { padding: 15px 0; }
    .logo-img { height: 50px; }
    .navbar.scrolled .logo-img { height: 45px; }
    .navbar-toggler { display: block; border: 1px solid rgba(244, 163, 0, 0.5); border-radius: 8px; padding: 8px 12px; }
    .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28244, 163, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
    .navbar.scrolled .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810, 22, 40, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
    .navbar-collapse { background: rgba(10, 22, 40, 0.98); position: absolute; top: 100%; left: 0; right: 0; padding: 20px; border-radius: 0 0 20px 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
    .navbar.scrolled .navbar-collapse { background: rgba(255, 255, 255, 0.98); }
    .navbar-nav { padding: 10px 0; }
    .navbar-nav .nav-link { padding: 15px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); color: var(--color-white) !important; }
    .navbar.scrolled .navbar-nav .nav-link { border-bottom-color: rgba(10, 22, 40, 0.1); }
    .navbar-nav .nav-link::after { display: none; }
    .hero-section { min-height: auto; padding: 120px 0 60px; }
    .hero-content { text-align: center; padding: 0 20px; }
    .hero-title { font-size: 32px !important; line-height: 1.3; }
    .hero-description { font-size: 15px; margin: 0 auto 25px; }
    .hero-buttons { justify-content: center; gap: 12px; }
    .btn-primary-custom, .btn-outline-custom { padding: 12px 25px; font-size: 14px; }
    .marketing-sphere-container { display: none; }
    .hero-image { display: none; }
    .section-title { font-size: 28px !important; }
    .section-description { font-size: 15px !important; }
    .about-section { padding: 60px 0; height: auto !important; min-height: auto !important; }
    .about-section .section-header.sticky { position: relative !important; top: auto !important; left: auto !important; transform: none !important; z-index: 10 !important; padding: 0 0 30px 0 !important; background: none !important; }
    .about-carousel-container { position: relative !important; padding-top: 0 !important; margin-top: 0 !important; z-index: 10 !important; height: auto !important; }
    .about-carousel-container.is-pinned { position: relative !important; top: auto !important; height: auto !important; z-index: 10 !important; }
    .about-carousel { margin-top: 0 !important; display: flex !important; flex-direction: column !important; gap: 30px !important; }
    .about-slide { position: relative !important; opacity: 1 !important; visibility: visible !important; transform: none !important; flex-direction: column; gap: 20px; padding: 20px; margin-bottom: 20px; background: rgba(255, 255, 255, 0.05); border-radius: 15px; }
    .about-slide-image { height: 200px; max-width: 100%; border-radius: 10px; }
    .about-slide-content { opacity: 1 !important; visibility: visible !important; transform: none !important; }
    .about-slide-content h3 { font-size: 22px; margin-bottom: 10px; }
    .about-slide-content p { font-size: 14px; }
    .about-progress-dots { display: none !important; }
    .services-section { padding: 60px 0; height: auto !important; min-height: auto !important; }
    .services-section .section-header.sticky { position: relative !important; top: auto !important; left: auto !important; transform: none !important; z-index: 10 !important; padding: 0 0 30px 0 !important; background: none !important; }
    .services-carousel-container { position: relative !important; padding-top: 0 !important; margin-top: 0 !important; z-index: 10 !important; height: auto !important; }
    .services-carousel-container.is-pinned { position: relative !important; top: auto !important; height: auto !important; z-index: 10 !important; }
    .services-carousel { margin-top: 0 !important; display: flex !important; flex-direction: column !important; gap: 30px !important; }
    .service-slide { position: relative !important; opacity: 1 !important; visibility: visible !important; transform: none !important; flex-direction: column; gap: 20px; padding: 20px; margin-bottom: 20px; background: rgba(255, 255, 255, 0.05); border-radius: 15px; }
    .service-image { height: 200px; max-width: 100%; border-radius: 10px; }
    .service-content { opacity: 1 !important; visibility: visible !important; transform: none !important; }
    .service-content h3 { font-size: 22px; margin-bottom: 10px; }
    .service-content p { font-size: 14px; }
    .progress-dots { display: none !important; }
    .about-carousel-progress, .carousel-progress { padding: 10px 15px; bottom: 20px; }
    .about-progress-dot, .progress-dot { width: 10px; height: 10px; }
    .about-progress-dot:not(:last-child)::after, .progress-dot:not(:last-child)::after { content: none; }
    .testimonials-section { padding: 60px 0; }
    .testimonial-card { padding: 25px; margin: 0 10px; }
    .testimonial-text { font-size: 14px; }
    .contact-section { padding: 60px 0; }
    .contact-info { text-align: center; margin-bottom: 40px; }
    .contact-item { justify-content: center; }
    .footer-premium { padding: 40px 0 20px; }
    .footer-newsletter { padding: 20px; margin-bottom: 30px; }
    .newsletter-title { font-size: 18px; }
    .footer-main .col-lg-4, .footer-main .col-lg-2, .footer-main .col-lg-3 { margin-bottom: 25px; }
    .footer-column-title { font-size: 16px; margin-bottom: 15px; }
    .footer-links-list li a { font-size: 14px; padding: 8px 0; }
    .footer-bottom-premium { padding-top: 20px; }
    .copyright-text { font-size: 13px; text-align: center; margin-bottom: 10px; }
    .footer-bottom-links { text-align: center; }
    .custom-cursor, .cursor-dot { display: none !important; }
}

@media (max-width: 576px) {
    .logo-img { height: 40px; }
    .navbar.scrolled .logo-img { height: 35px; }
    .hero-section { padding: 100px 0 40px; }
    .hero-badge { font-size: 11px; padding: 6px 12px; }
    .hero-title { font-size: 26px !important; }
    .hero-description { font-size: 14px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; padding: 12px 20px; font-size: 13px; }
    .section-badge { font-size: 12px; padding: 6px 12px; }
    .section-title { font-size: 24px !important; }
    .section-description { font-size: 14px !important; margin-bottom: 30px !important; }
    .about-slide-image { height: 180px; }
    .about-slide-content h3 { font-size: 20px; }
    .about-slide-features li { font-size: 14px; }
    .value-badge { padding: 8px 15px; font-size: 12px; }
    .service-image { height: 180px; }
    .service-content h3 { font-size: 20px; }
    .service-features li { font-size: 14px; }
    .service-btn { padding: 12px 25px; font-size: 13px; }
    .testimonial-card { padding: 20px; }
    .testimonial-text { font-size: 13px; }
    .testimonial-author { flex-direction: column; text-align: center; gap: 10px; }
    .contact-form-wrapper { padding: 20px; }
    .form-control { font-size: 14px; padding: 12px 15px; }
    .footer-brand { text-align: center; }
    .footer-logo { height: 50px; margin: 0 auto 15px; }
    .footer-tagline { font-size: 14px; }
    .footer-social-premium { justify-content: center; }
    .social-icon-3d { width: 40px; height: 40px; }
    .newsletter-input { font-size: 14px; padding: 12px 15px; }
    .newsletter-btn { padding: 12px 20px; font-size: 13px; }
    #preloader { padding: 20px; }
    .preloader-logo { width: 80px; height: 80px; }
    .preloader-text { font-size: 12px; letter-spacing: 2px; }
    .preloader-progress { width: 150px; }
}

@media (max-width: 992px) and (orientation: landscape) {
    .hero-section { min-height: auto; padding: 80px 0 40px; }
    .hero-title { font-size: 28px !important; }
}

@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--color-white);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    border: 2px solid #25D366;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -10px; top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #25D366;
}

.whatsapp-tooltip span { display: block; font-family: var(--font-primary); font-size: 14px; font-weight: 700; color: #25D366; margin-bottom: 3px; }
.whatsapp-tooltip p { font-family: var(--font-secondary); font-size: 12px; color: var(--color-gray); margin: 0; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; transform: translateX(0); }

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 30px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%); opacity: 0; transition: opacity 0.3s ease; }
.whatsapp-btn:hover::before { opacity: 1; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6); }

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 3px solid #25D366;
    animation: whatsapp-pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 992px) {
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-btn { width: 55px; height: 55px; font-size: 26px; }
    .whatsapp-tooltip { right: 65px; padding: 12px 15px; }
}

@media (max-width: 576px) {
    .whatsapp-float { bottom: 15px; right: 15px; }
    .whatsapp-btn { width: 50px; height: 50px; font-size: 24px; }
    .whatsapp-tooltip { right: 60px; padding: 10px 12px; }
    .whatsapp-tooltip span { font-size: 12px; }
    .whatsapp-tooltip p { font-size: 11px; }
}

/* ===================================
   Contact Buttons
   =================================== */
.contact-buttons { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }

.contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contact-btn::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%; transition: width 0.4s ease; z-index: 0; }
.contact-btn:hover::before { width: 100%; }
.contact-btn-email::before { background: linear-gradient(135deg, rgba(234, 67, 53, 0.2) 0%, rgba(234, 67, 53, 0.1) 100%); }
.contact-btn-whatsapp::before { background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.1) 100%); }
.contact-btn-location::before { background: linear-gradient(135deg, rgba(244, 163, 0, 0.2) 0%, rgba(244, 163, 0, 0.1) 100%); }
.contact-btn:hover { transform: translateX(10px); border-color: rgba(255, 255, 255, 0.3); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }

.contact-btn-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 22px; position: relative; z-index: 1; transition: all 0.3s ease; }
.contact-btn-email .contact-btn-icon { background: rgba(234, 67, 53, 0.2); color: #EA4335; }
.contact-btn-whatsapp .contact-btn-icon { background: rgba(37, 211, 102, 0.2); color: #25D366; }
.contact-btn-location .contact-btn-icon { background: rgba(244, 163, 0, 0.2); color: var(--color-yellow); }
.contact-btn:hover .contact-btn-icon { transform: scale(1.1); }

.contact-btn-text { flex: 1; position: relative; z-index: 1; }
.contact-btn-label { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-btn-value { display: block; font-size: 15px; font-weight: 600; color: var(--color-white); }

.contact-btn-arrow { width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.5); font-size: 12px; transition: all 0.3s ease; position: relative; z-index: 1; }
.contact-btn:hover .contact-btn-arrow { background: rgba(255, 255, 255, 0.2); color: var(--color-white); transform: translateX(5px); }

.contact-map { margin-top: 30px; border-radius: 15px; overflow: hidden; border: 2px solid rgba(255, 255, 255, 0.1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.map-container { position: relative; width: 100%; }
.map-container iframe { display: block; width: 100%; height: 200px; filter: grayscale(30%) contrast(1.1); transition: filter 0.3s ease; }
.contact-map:hover .map-container iframe { filter: grayscale(0%) contrast(1); }

@media (max-width: 992px) {
    .contact-buttons { margin-top: 25px; }
    .contact-btn { padding: 15px 20px; }
    .contact-btn-icon { width: 45px; height: 45px; font-size: 20px; }
    .contact-btn-value { font-size: 14px; }
    .contact-map { margin-top: 25px; }
    .map-container iframe { height: 180px; }
}

@media (max-width: 576px) {
    .contact-buttons { gap: 12px; }
    .contact-btn { padding: 12px 15px; gap: 12px; }
    .contact-btn-icon { width: 40px; height: 40px; font-size: 18px; }
    .contact-btn-label { font-size: 10px; }
    .contact-btn-value { font-size: 13px; }
    .contact-btn-arrow { width: 30px; height: 30px; font-size: 10px; }
    .map-container iframe { height: 150px; }
}

/* ===================================
   About Spoiler Section - NUEVO
   =================================== */
.about-spoiler-section {
    position: relative;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-spoiler-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-spoiler-bg .hero-bg {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-spoiler-bg .floating-particles-bg {
    opacity: 0.3;
}

/* Spoiler Header */
.about-spoiler-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.spoiler-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 20px 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    background: transparent;
    border: none;
}

.spoiler-label {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    position: relative;
}

.spoiler-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
    transition: width 0.4s ease;
}

.spoiler-trigger:hover .spoiler-label,
.spoiler-trigger.active .spoiler-label {
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(244, 163, 0, 0.5);
}

.spoiler-trigger:hover .spoiler-label::after,
.spoiler-trigger.active .spoiler-label::after {
    width: 100%;
}

.spoiler-indicator {
    margin-top: 15px;
    color: var(--color-yellow);
    font-size: 14px;
    transition: all 0.4s ease;
}

.spoiler-trigger:hover .spoiler-indicator,
.spoiler-trigger.active .spoiler-indicator {
    transform: rotate(180deg);
    color: var(--color-yellow-light);
}

.spoiler-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(244, 163, 0, 0.3), transparent);
}

/* Spoiler Panels */
.spoiler-panels-container {
    position: relative;
    z-index: 1;
}

.spoiler-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.spoiler-panel.active {
    max-height: 600px;
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.spoiler-panel.active .spoiler-content {
    animation: slideInUp 0.6s ease forwards;
}

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

.spoiler-content {
    padding: 40px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    border-radius: 20px;
    border: 1px solid rgba(244, 163, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(244, 163, 0, 0.1);
}

/* Spoiler Historia */
.spoiler-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.spoiler-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 163, 0, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.spoiler-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spoiler-image:hover img {
    transform: scale(1.05);
}

/* Spoiler Text */
.spoiler-text h3 {
    color: var(--color-blue-dark);
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
}

.spoiler-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-yellow);
    border-radius: 2px;
}

.spoiler-text p {
    color: var(--color-blue-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.85;
}

.spoiler-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.spoiler-features li {
    color: var(--color-blue-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.85;
}

.spoiler-features li i {
    color: var(--color-yellow);
    font-size: 14px;
}

/* Spoiler Faro */
.faro-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.faro-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(244, 163, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.faro-card-link:hover .faro-card {
    background: #ffffff;
    border-color: var(--color-yellow);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faro-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-light) 100%);
    border-radius: 50%;
    font-size: 24px;
    color: var(--color-blue-dark);
    box-shadow: 0 10px 30px rgba(244, 163, 0, 0.3);
}

.faro-card h4 {
    color: var(--color-blue-dark);
    font-size: 20px;
    margin-bottom: 15px;
}

.faro-card p {
    color: var(--color-blue-dark);
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

.faro-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.faro-values-description {
    color: var(--color-blue-dark);
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.75;
    margin-top: 10px;
    text-align: left;
}

.faro-values .value-badge {
    background: var(--color-yellow);
    color: var(--color-blue-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Triangle Layout for Mission/Vision/Valores Cards */
.faro-cards-triangle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faro-cards-triangle .faro-card-row-top {
    display: flex;
    justify-content: center;
    width: 100%;
}

.faro-cards-triangle .faro-card-row-bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.faro-cards-triangle .faro-card-link {
    flex: 1;
    max-width: 320px;
}

.faro-cards-triangle .faro-card {
    min-height: 280px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-spoiler-section {
        padding: 60px 0;
    }
    
    .about-spoiler-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .spoiler-divider {
        width: 60px;
        height: 2px;
    }
    
    .spoiler-label {
        font-size: 20px;
    }
    
    .spoiler-content {
        padding: 25px;
    }
    
    .spoiler-text h3 {
        font-size: 24px;
    }
    
    .faro-cards-triangle {
        gap: 15px;
    }
    
    .faro-cards-triangle .faro-card-row-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .faro-cards-triangle .faro-card-link {
        max-width: 100%;
    }
    
    .faro-cards-triangle .faro-card {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .about-spoiler-section {
        padding: 40px 0;
    }
    
    .spoiler-label {
        font-size: 16px;
    }
    
    .spoiler-trigger {
        padding: 15px 20px;
    }
    
    .spoiler-content {
        padding: 20px;
    }
    
    .faro-card {
        padding: 20px;
        margin-bottom: 15px;
    }
}

/* ===================================
   NUEVO TÍTULO - Faro Principal + Subtítulo
/* =================================== 
   NUEVO TÍTULO - Faro Principal
   =================================== */
.faro-main-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.faro-main-title .title-somos {
    color: var(--color-blue-dark);
}

.faro-main-title .title-faro {
    color: var(--color-yellow);
}

/* Header Tooltip - Links a about.html */
.header-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid rgba(244, 163, 0, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
}

.about-spoiler-header:hover .header-tooltip {
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
}

.header-tooltip-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.header-tooltip-links li a {
    color: var(--color-blue-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.header-tooltip-links li a i {
    color: var(--color-yellow);
    font-size: 12px;
}

.header-tooltip-links li a:hover {
    color: var(--color-yellow);
}

/* Subtítulo contenedor */
.spoiler-subtitle-container {
    position: relative;
    display: inline-block;
    text-align: center;
    margin-bottom: 30px;
}

.spoiler-subtitle-link {
    text-decoration: none;
    display: inline-block;
}

.spoiler-subtitle {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-yellow);
    text-transform: lowercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.spoiler-subtitle::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-yellow-light);
    transition: width 0.3s ease;
}

.spoiler-subtitle-link:hover .spoiler-subtitle,
.spoiler-subtitle-container:hover .spoiler-subtitle {
    color: var(--color-yellow);
}

.spoiler-subtitle-link:hover .spoiler-subtitle::after,
.spoiler-subtitle-container:hover .spoiler-subtitle::after {
    width: 100%;
}

/* Tooltip flotante */
.spoiler-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.98) 0%, rgba(30, 58, 95, 0.98) 100%);
    border: 1px solid rgba(244, 163, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(244, 163, 0, 0.15);
    pointer-events: none;
}

.spoiler-subtitle-container:hover .spoiler-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(15px);
    pointer-events: auto;
}

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

.tooltip-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tooltip-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tooltip-features li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tooltip-features li i {
    color: var(--color-yellow);
    font-size: 10px;
}

.tooltip-link {
    color: var(--color-yellow);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tooltip-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.spoiler-subtitle-container:hover .tooltip-link i {
    transform: translateX(3px);
}

/* Contenedor de triggers (para expandir) - OCULTO */
/* .spoiler-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
} */

/* Spoiler Content Full - Siempre visible (sin hover/scroll) */
.spoiler-content-full {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.spoiler-toggle-container .spoiler-trigger {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.spoiler-toggle-container .spoiler-trigger:hover {
    background: rgba(244, 163, 0, 0.1);
    border-color: rgba(244, 163, 0, 0.3);
    transform: translateY(-2px);
}

.spoiler-toggle-container .spoiler-label {
    font-size: 16px;
}

.spoiler-toggle-container .spoiler-indicator {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .faro-main-title {
        font-size: 32px;
    }
    
    .spoiler-subtitle {
        font-size: 14px;
    }
    
    .spoiler-tooltip {
        min-width: 240px;
        padding: 15px;
    }
    
    .tooltip-features {
        flex-direction: column;
        gap: 8px;
    }
    
    .spoiler-toggle-container {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===================================
   ANIMACIONES - Sobre Nosotros Section
   =================================== */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animaciones específicas */
.animate-element[data-anim="fade-up"] {
    transform: translateY(40px);
}

.animate-element[data-anim="fade-right"] {
    transform: translateX(-50px);
}

.animate-element[data-anim="fade-left"] {
    transform: translateX(50px);
}

.animate-element.animate-in[data-anim="fade-right"],
.animate-element.animate-in[data-anim="fade-left"] {
    transform: translateX(0);
}

/* Delay para tarjetas */
.animate-element[data-delay="0"].animate-in {
    transition-delay: 0.1s;
}

.animate-element[data-delay="1"].animate-in {
    transition-delay: 0.25s;
}

.animate-element[data-delay="2"].animate-in {
    transition-delay: 0.4s;
}

/* ===================================
   Service Card Icon Animation
   =================================== */
@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.service-card:hover .service-card-icon {
    animation: icon-pulse 1s ease-in-out infinite;
}

/* ===================================
   ACCESIBILIDAD - Reduced Motion
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Desactivar preloader */
    #preloader {
        display: none !important;
    }
    
    /* Desactivar cursor personalizado */
    .custom-cursor,
    .cursor-dot {
        display: none !important;
    }
    
    /* Desactivar partículas y orbes */
    .floating-particles-bg,
    .floating-orbs,
    .aurora-container,
    .hero-particles {
        display: none !important;
    }
    
    /* Desactivar animaciones específicas */
    .typewriter-cursor {
        display: none !important;
    }
    
    .text-gradient,
    .text-shimmer {
        animation: none !important;
        background-clip: text !important;
        -webkit-background-clip: text !important;
    }
}

/* ===================================
   LOGROS SECTION - Sequential Count-Up
   =================================== */
.logros-section {
    position: relative;
    padding: 100px 0;
    background: var(--color-white);
    overflow: hidden;
}

.logros-bg {
    display: none;
}

.logros-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.logros-section .section-badge {
    background: rgba(244, 163, 0, 0.1);
    color: var(--color-yellow);
}

.logros-section .section-title {
    color: var(--color-blue-dark);
}

.logros-section .text-shimmer {
    background: linear-gradient(90deg, var(--color-yellow) 0%, var(--color-yellow-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.logros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-left: 10%;
    position: relative;
    z-index: 1;
}

.logro-item {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logro-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.logro-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-yellow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logro-item.visible::before {
    opacity: 1;
}

.logro-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Efecto hover en la sección para re-activar */
.logros-section:hover .logro-item {
    border-color: var(--color-yellow);
}

.logros-section:hover .logro-item::before {
    opacity: 1;
}

.logro-number {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-blue-dark);
    line-height: 1;
    margin-bottom: 5px;
    min-width: 80px;
}

.logro-suffix {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-left: -5px;
}

.logro-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-blue-dark);
    margin-bottom: 8px;
}

.logro-sublabel {
    display: block;
    font-family: var(--font-secondary);
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .logros-section {
        padding: 80px 0;
    }
    
    .logros-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 5%;
    }
    
    .logro-number {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .logros-section {
        padding: 60px 0;
    }
    
    .logros-grid {
        grid-template-columns: 1fr;
        padding-left: 5%;
    }
    
    .logro-item {
        padding: 25px 20px;
    }
    
    .logro-number {
        font-size: 36px;
    }
    
    .logro-suffix {
        font-size: 24px;
    }
    
    .logro-label {
        font-size: 16px;
    }
    
    .logro-sublabel {
        font-size: 12px;
    }
}
