:root {
    --primary-color: #2563eb;
    --secondary-color: #1d4ed8;
    --accent-color: #3b82f6;
    --text-color: #ffffff;
    --light-text: rgba(255, 255, 255, 0.85);
    --light-bg: #0f172a;
    --white: #ffffff;
    --dark-bg: #020617;
    --shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glow: 0 0 25px rgba(37, 99, 235, 0.5);
    --gradient-blue: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(29, 78, 216, 0.2));
    --gradient-orange: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(255, 102, 0, 0.15));
    --glass: rgba(255, 255, 255, 0.05);
    --blur: blur(12px);
    --border-light: 1px solid rgba(255, 255, 255, 0.08);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --neon-glow: 0 0 15px rgba(37, 99, 235, 0.6),
                 0 0 30px rgba(37, 99, 235, 0.4),
                 0 0 45px rgba(37, 99, 235, 0.2);
}

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

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, 
        #001233 0%,
        #000b1e 40%,
        #000000 100%
    );
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

body::before {
    content: none;
}

/* Header mejorado */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
    position: relative;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 24px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
    transform-origin: left;
}

.menu-toggle:hover span {
    background-color: var(--primary-color);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    top: 0px;
}

.logo img {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(0, 102, 255, 0.3));
}

.cta-button-header {
    background: linear-gradient(45deg, var(--primary-color), #0052cc);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.15);
}

.cta-button-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.25);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Estilos del selector de idioma */
.language-selector {
    position: relative;
    margin-left: 2rem;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-btn i {
    font-size: 1rem;
    color: var(--primary-color);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* Esta clase se manejará ahora desde JavaScript
.language-selector:hover .language-dropdown,
.language-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
*/

.language-option {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    cursor: pointer;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.language-option.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

/* Media queries para el selector de idioma */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 1rem;
    }
    
    .language-btn {
        padding: 0.4rem 0.8rem;
    }
    
    .language-btn span {
        display: none;
    }

    .language-dropdown {
        right: -1rem;
    }
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
    z-index: 1;
    background: transparent;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            circle at 20% 20%,
            rgba(37, 99, 235, 0.05) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(37, 99, 235, 0.05) 0%,
            transparent 60%
        );
    z-index: 1;
    pointer-events: none;
    animation: pulseGradient 8s ease-in-out infinite;
}

@keyframes pulseGradient {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(
            125deg,
            rgba(0, 102, 255, 0.02) 0%,
            transparent 30%
        ),
        linear-gradient(
            -125deg,
            rgba(0, 102, 255, 0.02) 0%,
            transparent 30%
        );
    opacity: 0.8;
    pointer-events: none;
    z-index: 2;
}

.hero-visual {
    position: relative;
    width: 900px;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(0, 102, 255, 0.05) 0%,
        rgba(0, 102, 255, 0.03) 20%,
        transparent 60%
    );
    animation: pulseBackground 8s ease-in-out infinite;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding-left: 8rem;
}

.hero-tag {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: var(--blur);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.hero-tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
    border-color: rgba(37, 99, 235, 0.5);
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Hero Visual mejorado */
.hero-circle {
    position: relative;
    width: 700px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.circle-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(2, 11, 36, 0.95);
    border: 2px solid rgba(0, 102, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.8rem;
    transition: all 0.4s ease;
    z-index: 5;
    box-shadow: 
        0 0 30px rgba(0, 102, 255, 0.2),
        0 0 60px rgba(0, 102, 255, 0.1),
        inset 0 0 20px rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(5px);
}

.circle-icon:hover {
    transform: scale(1.1) !important;
    border-color: rgba(0, 102, 255, 1);
    box-shadow: 
        0 0 40px rgba(0, 102, 255, 0.4),
        0 0 80px rgba(0, 102, 255, 0.2),
        inset 0 0 30px rgba(0, 102, 255, 0.3);
}

.circle-icon.decorative {
    width: 40px;
    height: 40px;
    background: rgba(2, 11, 36, 0.9);
    border: 1px solid rgba(0, 102, 255, 0.6);
    box-shadow: 
        0 0 20px rgba(0, 102, 255, 0.15),
        0 0 40px rgba(0, 102, 255, 0.1),
        inset 0 0 15px rgba(0, 102, 255, 0.15);
    z-index: 4;
}

.circle-icon i {
    filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.8));
    color: #fff;
}

.main-icon {
    width: 250px;
    height: 250px;
    background: rgba(2, 11, 36, 1);
    border: 3px solid rgba(0, 102, 255, 0.9);
    z-index: 10;
    box-shadow: 
        0 0 50px rgba(0, 102, 255, 0.3),
        0 0 100px rgba(0, 102, 255, 0.2),
        inset 0 0 40px rgba(0, 102, 255, 0.3);
}

.main-icon img {
    width: 70%;
    height: auto;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 20px rgba(0, 102, 255, 0.8));
}

.orbit-line {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
    box-shadow: 
        0 0 30px rgba(0, 102, 255, 0.1),
        inset 0 0 30px rgba(0, 102, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(0, 102, 255, 0.2),
        rgba(0, 102, 255, 0.3) 50%,
        rgba(0, 102, 255, 0.2)
    );
    transform-origin: left center;
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.15);
}

.logo-glow {
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle,
        rgba(0, 102, 255, 0.4) 0%,
        rgba(0, 102, 255, 0.2) 20%,
        transparent 50%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    mix-blend-mode: screen;
    animation: rotateLogo 20s linear infinite;
    z-index: 3;
}

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

/* Posiciones de los círculos */
.circle-icon:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-icon:nth-child(3) {
    top: 25%;
    right: 0;
}

.circle-icon:nth-child(4) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-icon:nth-child(5) {
    top: 25%;
    left: 0;
}

.circle-icon:nth-child(6) {
    bottom: 25%;
    right: 0;
}

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

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

/* Efecto de partículas */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: transparent;
}

/* Ajuste de las estrellas */
.star {
    position: fixed;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle var(--duration, 4s) ease-in-out infinite;
    z-index: 0;
}

.star.tiny {
    width: 1px;
    height: 1px;
    box-shadow: 
        0 0 4px #fff,
        0 0 8px #fff,
        0 0 12px rgba(255, 255, 255, 0.8);
}

.star.small {
    width: 2px;
    height: 2px;
    box-shadow: 
        0 0 8px #fff,
        0 0 16px #fff,
        0 0 24px rgba(255, 255, 255, 0.8);
}

.star.medium {
    width: 3px;
    height: 3px;
    box-shadow: 
        0 0 12px #fff,
        0 0 24px #fff,
        0 0 36px rgba(255, 255, 255, 0.8);
}

.star.large {
    width: 4px;
    height: 4px;
    box-shadow: 
        0 0 16px #fff,
        0 0 32px #fff,
        0 0 48px rgba(255, 255, 255, 0.8);
}

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

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

.shooting-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
    animation: shooting var(--duration, 4s) ease-out infinite;
    opacity: 0;
    z-index: 2;
}

.shooting-star::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.8), 
        transparent
    );
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes shooting {
    0% {
        transform: translate(100vw, -10vh) rotate(35deg);
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    60% {
        transform: translate(40vw, 75vh) rotate(35deg);
        opacity: 0;
    }
    100% {
        transform: translate(40vw, 75vh) rotate(35deg);
        opacity: 0;
    }
}

/* Partículas mejoradas */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Botón CTA mejorado */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}


/* Benefits Section */
.benefits-section {
    padding: 8rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.benefit-card {
    flex: 0 1 300px;
    background: var(--glass);
    backdrop-filter: var(--blur);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: var(--border-light);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s;
}

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

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--neon-glow);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover i {
    transform: scale(1.2) rotate(15deg);
}

.benefit-card i::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--primary-color);
    opacity: 0.2;
    filter: blur(15px);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.benefit-card:hover i::after {
    opacity: 0.4;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--light-text);
}

/* Clients Section */
.clients-section {
    padding: 8rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.client-card {
    flex: 0 1 300px;
    background: var(--glass);
    padding: 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 1rem;
}

.client-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.client-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-info strong {
    color: var(--text-color);
}

.client-info span {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 4rem 5%;
    background: transparent;
    z-index: 2;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h2 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: translateY(-5px);
    background: rgba(37, 99, 235, 0.2);
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.input-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.submit-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .form-group {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}

/* Footer Styles */
.main-footer {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 4rem 0 0 0;
    color: var(--text-color);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section.brand {
    gap: 2rem;
}

.footer-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(0, 102, 255, 0.3));
}

.footer-section.brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section.contact ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section.contact ul li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.98);
    padding: 1rem 0;
    text-align: center;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 5% 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section.brand {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section.contact ul li {
        justify-content: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    animation: bounce 2s infinite;
    box-shadow: var(--neon-glow);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-visual {
        width: 500px;
        height: 500px;
    }
    .hero-content {
        padding-left: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 6rem;
    }

    .hero-visual {
        width: 100%;
        height: 400px;
        margin: 0 auto;
    }

    .hero-content {
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-circle {
        width: 300px;
        height: 300px;
    }
    
    .circle-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .main-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid,
    .benefits-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.6s ease forwards;
}

/* Animaciones del Hero */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Animaciones de entrada */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animación de carga de página */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 9999;
    animation: pageTransition 1s ease-out forwards;
}

@keyframes pageTransition {
    0% {
        transform: scaleY(1);
    }
    100% {
        transform: scaleY(0);
        transform-origin: top;
    }
}

/* Efecto de desenfoque en scroll */
.blur-header {
    backdrop-filter: var(--blur);
    background: rgba(0, 0, 0, 0.8);
}

/* Efecto de partículas */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    border-radius: 50%;
}

.particle::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle at center, var(--primary-color), transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
}

/* Animaciones mejoradas */
@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translate(var(--tx), var(--ty));
    }
    50% {
        transform: translate(
            calc(var(--tx) + var(--float-x)),
            calc(var(--ty) + var(--float-y))
        );
    }
    100% {
        transform: translate(var(--tx), var(--ty));
    }
}

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

/* Animaciones */
@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.1);
    }
}

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

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Notificaciones mejoradas */
.notification {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--neon-glow);
}

.logo-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(0, 102, 255, 0.6) 30%,
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    mix-blend-mode: screen;
    animation: rotateLogo 10s linear infinite;
    z-index: 3;
}

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

/* Services Section */
.services-section {
    position: relative;
    padding: 8rem 5%;
    background: transparent;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: transparent;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.service-card:hover .service-icon i {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Cost Efficiency Section */
.cost-efficiency-section {
    position: relative;
    padding: 4rem 5%;
    background: transparent;
    z-index: 2;
    overflow: hidden;
}

.cost-efficiency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.cost-efficiency-text {
    padding-right: 2rem;
}

.cost-efficiency-text h2 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.cost-efficiency-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.cost-efficiency-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cost-efficiency-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.2));
    transition: transform 0.3s ease;
}

.cost-efficiency-image:hover img {
    transform: translateY(-10px);
}

@media (max-width: 1024px) {
    .cost-efficiency-text h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .cost-efficiency-section,
    .asset-management-section {
        padding: 3rem 5%;
    }

    .cost-efficiency-content,
    .asset-management-content {
        gap: 2rem;
    }

    .cost-efficiency-text h2,
    .asset-management-text h2 {
        font-size: 1.8rem;
    }

    .cost-efficiency-image img,
    .asset-management-image img {
        max-width: 350px;
    }
}

/* Asset Management Section */
.asset-management-section {
    position: relative;
    padding: 4rem 5%;
    background: transparent;
    z-index: 2;
    overflow: hidden;
}

.asset-management-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.asset-management-text {
    padding-left: 2rem;
}

.asset-management-text h2 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.asset-management-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.asset-management-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.asset-management-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.2));
    transition: transform 0.3s ease;
}

.asset-management-image:hover img {
    transform: translateY(-10px);
}

@media (max-width: 1024px) {
    .asset-management-text h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .asset-management-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .asset-management-text {
        padding-left: 0;
        text-align: center;
        order: -1;
    }

    .asset-management-text h2 {
        font-size: 2rem;
    }

    .asset-management-text p {
        font-size: 1.1rem;
    }

    .asset-management-image img {
        max-width: 400px;
    }
}

/* Regulations Section */
.regulations-section {
    position: relative;
    padding: 4rem 5%;
    background: transparent;
    z-index: 2;
    overflow: hidden;
}

.regulations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.regulations-text {
    padding-right: 2rem;
}

.regulations-text h2 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.regulations-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.regulations-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.regulations-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.2));
    transition: transform 0.3s ease;
}

.regulations-image:hover img {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .regulations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .regulations-text {
        padding-right: 0;
        text-align: center;
        order: -1;
    }

    .regulations-text h2 {
        font-size: 1.8rem;
    }

    .regulations-image img {
        max-width: 350px;
    }
}

/* Pricing Section */
.pricing-section {
    position: relative;
    padding: 4rem 5%;
    background: transparent;
    z-index: 2;
    overflow: hidden;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-text {
    padding-left: 2rem;
}

.pricing-text h2 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.pricing-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.2));
    transition: transform 0.3s ease;
}

.pricing-image:hover img {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-text {
        padding-left: 0;
        text-align: center;
        order: 1;
    }

    .pricing-text h2 {
        font-size: 1.8rem;
    }

    .pricing-image img {
        max-width: 350px;
    }
}

/* Efectos visuales simplificados para las secciones */
.cost-efficiency-section,
.asset-management-section,
.regulations-section,
.pricing-section {
    position: relative;
}

/* Efecto de resplandor de fondo simplificado */
.cost-efficiency-section::before,
.asset-management-section::before,
.regulations-section::before,
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(37, 99, 235, 0.05) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.cost-efficiency-section:hover::before,
.asset-management-section:hover::before,
.regulations-section:hover::before,
.pricing-section:hover::before {
    opacity: 1;
}

/* Efecto de elevación suave */
.cost-efficiency-content,
.asset-management-content,
.regulations-content,
.pricing-content {
    position: relative;
    transition: transform 0.3s ease;
}

.cost-efficiency-content:hover,
.asset-management-content:hover,
.regulations-content:hover,
.pricing-content:hover {
    transform: translateY(-5px);
}

/* Efecto de imagen suave */
.cost-efficiency-image img,
.asset-management-image img,
.regulations-image img,
.pricing-image img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(37, 99, 235, 0.1));
}

.cost-efficiency-image:hover img,
.asset-management-image:hover img,
.regulations-image:hover img,
.pricing-image:hover img {
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 20px rgba(37, 99, 235, 0.2));
}

/* Efecto de texto suave */
.cost-efficiency-text h2,
.asset-management-text h2,
.regulations-text h2,
.pricing-text h2 {
    color: #ffffff;
    transition: color 0.3s ease;
}

.cost-efficiency-text p,
.asset-management-text p,
.regulations-text p,
.pricing-text p {
    transition: color 0.3s ease;
}

.cost-efficiency-content:hover p,
.asset-management-content:hover p,
.regulations-content:hover p,
.pricing-content:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Efecto de partículas flotantes */
.section-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle var(--duration, 15s) linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(var(--tx, 100px), var(--ty, -100px));
        opacity: 0;
    }
}

/* Eliminar los estilos del mouse-tracking */
.mouse-tracking {
    display: none;
} 