:root {
    --primary-color: #001f3f; /* Azul marino oscuro para fondo principal */
    --secondary-color: #002c59; /* Azul rey para secciones alternadas */
    --accent-color: #0047ab; /* Azul cobalto para acentos */
    --highlight-color: #0066cc; /* Azul brillante para destacados */
    --highlight-hover-color: #1a75ff; /* Azul más claro para hover */
    --text-light: #ffffff; /* Blanco puro para texto principal */
    --text-dark: #e6f3ff; /* Azul muy claro para texto secundario */
    --gradient: linear-gradient(135deg, #001f3f, #003366); /* Gradiente principal */
    --gradient-hover: linear-gradient(135deg, #002c59, #004080); /* Gradiente hover */
    --card-bg: rgba(0, 31, 63, 0.9); /* Fondo de tarjetas */
    --hover-bg: rgba(0, 102, 204, 0.15); /* Hover más suave */
    --glass-bg: rgba(0, 31, 63, 0.95); /* Fondo translúcido */
    --glass-border: rgba(0, 102, 204, 0.2); /* Borde azul */
    --shadow: 0 8px 32px 0 rgba(0, 31, 63, 0.3); /* Sombra en tono azul */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ajustes globales */
html {
    background-color: var(--primary-color);
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero ajustado */
.hero {
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 77, 153, 0.15), transparent 60%);
    pointer-events: none;
}

.navbar {
    padding: 1.5rem 0;
    background: rgba(0, 31, 63, 0.98);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(0, 102, 204, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--highlight-color);
}

/* Hero content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 0 4rem;
    margin-top: 4rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    color: var(--text-light);
}

/* Ajustes de secciones */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.section:not(:first-child) {
    margin-top: -2rem;
}

.section.dark {
    background: linear-gradient(to bottom, #001f3f, #002c59);
    color: var(--primary-color);
}

.section h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--highlight-color);
    border-radius: 3px;
}

.section p {
    color: var(--text-dark);
}

/* Value props */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.value-prop {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.value-prop i {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-prop h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-prop p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.value-prop:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-color);
    background: rgba(0, 44, 89, 0.95);
}

.value-prop:hover i {
    transform: scale(1.1);
    color: var(--highlight-hover-color);
}

/* Process steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step i {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.benefit i {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

/* Botones actualizados */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    z-index: 1;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    color: var(--text-light);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 31, 63, 0.2);
    color: var(--text-light);
}

.btn-secondary {
    background: rgba(0, 31, 63, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: rgba(0, 31, 63, 0.15);
    border-color: var(--highlight-color);
    transform: translateY(-2px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 31, 63, 0.1),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer ajustado */
footer {
    background: var(--primary-color);
    padding: 2rem 0;
    margin-top: -1rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2rem;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
    }

    .section {
        padding: 3rem 0;
    }

    .section:not(:first-child) {
        margin-top: -1rem;
    }

    .service-cards {
        padding: 1rem 0;
    }

    .integration-circle-container {
        padding: 1.5rem 0;
    }

    .digital-solutions {
        padding: 2rem 0;
    }

    .hero::before {
        width: 100%;
        opacity: 0.1;
    }

    .integration-circle {
        grid-template-columns: 1fr;
    }

    .section h2 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 1rem;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }

    .hero-content {
        padding: 5rem 0 3rem;
        margin-top: 3.5rem;
    }

    .circle-wrapper {
        gap: 1.5rem;
    }

    .timeline-item {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .timeline-content {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        backdrop-filter: blur(12px);
    }

    .solution-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .solution-icon i {
        font-size: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .solution-features {
        padding-left: 1rem;
    }

    .solution-features li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .floating-tech {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .value-props {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-content {
        padding: 2rem;
    }

    .solution-features li {
        font-size: 0.95rem;
    }

    .floating-tech {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .tech-bubble {
        width: 80px;
        height: 80px;
    }
}

/* Sección de pirámide */
.pyramid-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.pyramid-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.pyramid-item:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-color);
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.1);
}

.pyramid-line {
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 2px;
    height: 1rem;
    background: var(--highlight-color);
    opacity: 0.5;
}

.pyramid-item.bottom .pyramid-line {
    display: none;
}

/* Círculo de integración */
.integration-circle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

.integration-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

/* Support grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-item {
    background: rgba(0, 31, 63, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 31, 63, 0.15);
}

.support-item i {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

/* Efectos de hover mejorados */
.card, .value-prop, .step, .benefit {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.card:hover, .value-prop:hover, .step:hover, .benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 31, 63, 0.3);
    border-color: var(--highlight-color);
    background: rgba(0, 44, 89, 0.95);
}

.card::after, .value-prop::after, .step::after, .benefit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 31, 63, 0.05),
        transparent
    );
    transition: 0.5s;
}

.card:hover::after, .value-prop:hover::after, .step:hover::after, .benefit:hover::after {
    left: 100%;
}

/* Mejoras en las animaciones generales */
.card::before, .value-prop::before, .step::before, .benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 31, 63, 0.05),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.5s;
}

.card:hover::before, .value-prop:hover::before, .step:hover::before, .benefit:hover::before {
    transform: translateX(100%);
}

/* Mejoras en los botones */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Integración circle nuevo diseño */
.integration-circle-container {
    padding: 2rem 0;
    margin-top: -1rem;
}

.circle-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.circle-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.circle-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 31, 63, 0.04);
    border-color: rgba(0, 102, 204, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.circle-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.circle-icon i {
    font-size: 1.5rem;
    color: var(--highlight-color);
}

.circle-content h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.circle-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline ajustado */
.digital-solutions {
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.solution-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.timeline-item {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-color);
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.1);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.solution-icon i {
    font-size: 1.8rem;
    color: var(--highlight-color);
}

.timeline-content h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.solution-features li i {
    color: var(--highlight-color);
    margin-right: 0.8rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .solution-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .solution-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .solution-icon i {
        font-size: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .solution-features li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .solution-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.floating-tech {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 4rem auto;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 1rem;
    flex-wrap: nowrap;
}

.tech-bubble {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    padding: 1.25rem;
}

.tech-icon {
    width: 100%;
    height: 100%;
    color: var(--text-light);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.tech-bubble:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-color);
    background: rgba(0, 31, 63, 0.7);
}

.tech-bubble:hover .tech-icon {
    transform: scale(1.1);
    opacity: 1;
    color: var(--highlight-color);
}

.tech-icon.aws {
    color: #FF9900;
}

.tech-icon.python {
    color: #3776AB;
}

.tech-icon.azure {
    color: #0078D4;
}

.tech-icon.database {
    color: #336791;
}

.tech-icon.docker {
    color: #2496ED;
}

.tech-icon.gcp {
    color: #4285F4;
}

@media (max-width: 768px) {
    .floating-tech {
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin: 2rem auto;
        justify-content: flex-start;
    }
    
    .tech-bubble {
        width: 80px;
        height: 80px;
        padding: 1rem;
    }
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.15), transparent 70%);
    transform: rotate(-15deg);
}

.hero-shape-2 {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 31, 63, 0.1), transparent 60%);
    transform: rotate(15deg);
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 102, 204, 0.15), transparent 70%);
}

.gradient-text {
    color: var(--highlight-color);
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--highlight-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.gradient-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-top: 4rem;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 400px;
}

.float-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    animation: float 6s infinite ease-in-out;
}

.float-item i {
    font-size: 2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.float-item:hover i {
    color: var(--highlight-color);
    transform: scale(1.2);
}

.float-item:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 40%;
    right: 30%;
    animation-delay: -2s;
}

.float-item:nth-child(3) {
    bottom: 20%;
    left: 35%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo i {
    font-size: 1.8rem;
    color: var(--highlight-color);
}

.logo:hover i {
    transform: rotate(15deg);
}

.btn i {
    margin-right: 0.5rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 4rem 0;
    }

    .floating-elements {
        height: 300px;
    }

    .float-item {
        width: 60px;
        height: 60px;
    }

    .float-item i {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .circle-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.partner-logo {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 160px;
    height: auto;
    filter: none;
    opacity: 1;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo:hover img {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--highlight-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--highlight-color);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.technologies span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info p {
        justify-content: center;
    }

    .technologies {
        gap: 1rem;
    }
}

.quote {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline-light i {
    margin-right: 0.5rem;
}

.footer-section .btn-outline {
    background: transparent;
    border: 2px solid var(--highlight-color);
    color: var(--highlight-color);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-section .btn-outline:hover {
    background: var(--highlight-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.partner-logo {
    background: rgba(0, 31, 63, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(0, 31, 63, 0.15);
    transform: translateY(-3px);
}

.partner-logo:hover img {
    opacity: 1;
}

/* Media Queries para dispositivos móviles */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 4rem 0;
    }

    .value-props {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        padding: 0.5rem 0;
    }

    .floating-tech {
        display: none;
    }

    .tech-bubble {
        width: 60px;
        height: 60px;
    }

    .timeline-item {
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
    }

    .timeline-content {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
    }

    .solution-features {
        padding-left: 1rem;
    }

    .solution-features li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .solution-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .solution-icon i {
        font-size: 1.5rem;
    }
}

/* Media Queries para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .value-props {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-content {
        padding: 2rem;
    }

    .solution-features li {
        font-size: 0.95rem;
    }
}

/* Estilos para el portafolio */
.section-description {
    text-align: center;
    color: rgba(0, 31, 63, 0.8);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.portfolio-item {
    background: linear-gradient(145deg, var(--card-bg), var(--glass-bg));
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 31, 63, 0.2);
    border: 1px solid rgba(0, 102, 204, 0.25);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 102, 204, 0.08), transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-content {
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Mejora de iconos */
.portfolio-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--highlight-hover-color) 100%);
    border-radius: 1.2rem;
    margin: 0 auto 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-icon {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
}

.portfolio-icon i {
    font-size: 36px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.icon-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s infinite;
    top: -10%;
    left: -10%;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
}

/* Mejora de títulos y textos */
.portfolio-content h3 {
    color: var(--text-light);
    font-size: 1.85rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    padding-bottom: 0.75rem;
    text-shadow: none;
}

.portfolio-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--highlight-color), var(--highlight-hover-color));
    border-radius: 3px;
}

.portfolio-details {
    margin-top: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.challenge, .solution, .results {
    background: rgba(0, 31, 63, 0.8);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.results {
    margin-bottom: 0;
}

.portfolio-details h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
    font-weight: 600;
}

.portfolio-details h4 i {
    color: var(--highlight-color);
    font-size: 0.9rem;
}

.portfolio-details p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    text-align: left;
    flex-grow: 1;
}

.portfolio-details ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-details li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
}

.portfolio-details li i {
    color: var(--highlight-color);
    font-size: 0.9rem;
    margin-right: 8px;
    line-height: 1.4;
    flex-shrink: 0;
}

.fa-check {
    color: var(--highlight-color) !important;
    background: -webkit-linear-gradient(45deg, var(--highlight-color), var(--highlight-hover-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.95rem !important;
}

/* Mejora de métricas */
.metrics-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.8rem;
    justify-content: center;
}

.metric-box {
    flex: 1;
    min-width: calc(33% - 1rem);
    background: linear-gradient(145deg, var(--card-bg), var(--glass-bg));
    padding: 0.8rem 0.6rem;
    border-radius: 0.8rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.portfolio-item:hover .metric-box {
    border-color: rgba(0, 102, 204, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-light), var(--highlight-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

.metric-label {
    display: block;
    font-size: 0.68rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
    font-weight: 500;
}

/* Media queries mejorados */
@media screen and (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .portfolio-icon {
        width: 80px;
        height: 80px;
    }
    
    .portfolio-icon i {
        font-size: 32px;
    }
    
    .portfolio-content h3 {
        font-size: 1.7rem;
    }
    
    .metric-value {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .portfolio-content {
        padding: 1.8rem 1.2rem;
    }
    
    .portfolio-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 1.5rem;
    }
    
    .portfolio-icon i {
        font-size: 30px;
    }
    
    .portfolio-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .portfolio-details {
        gap: 1.5rem;
    }
    
    .challenge, .solution, .results {
        padding: 1.2rem;
    }

    .portfolio-details ul {
        max-width: 100%;
    }
    
    .metric-value {
        font-size: 1.2rem;
        line-height: 1;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    
    .portfolio-details p,
    .portfolio-details li {
        font-size: 0.85rem;
    }
}

/* Estilos para la página de soluciones */
.hero-small {
    min-height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 3rem;
    background: linear-gradient(to bottom, rgba(0, 31, 63, 0.95), rgba(0, 31, 63, 0.98));
}

.hero-small::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 102, 204, 0.2), transparent 70%);
    pointer-events: none;
}

.page-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    text-shadow: none;
}

.page-description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    line-height: 1.6;
}

.underline-accent {
    width: 4rem;
    height: 4px;
    background: linear-gradient(to right, var(--highlight-color), var(--highlight-hover-color));
    margin: 1.5rem auto 2rem;
    display: block;
    border-radius: 2px;
}

.section.dark {
    background: linear-gradient(to bottom, rgba(0, 31, 63, 0.98), rgba(0, 31, 63, 0.98));
    padding: 5rem 0;
}

.section-description {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* Efectos de transición adicionales */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Efecto de color hover para métricas */
.metric-value {
    transition: all 0.4s ease;
}

.portfolio-item:hover .metric-value {
    background: linear-gradient(135deg, #e6f3ff, var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
}

@media screen and (max-width: 768px) {
    .hero-small {
        min-height: 30vh;
        padding: 4rem 0 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }
    
    .page-description {
        font-size: 1.1rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .underline-accent {
        width: 3.5rem;
        margin: 1rem auto 1.5rem;
    }
}

.solution {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Ajustes para los ítems con los checks */
.solution > ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    list-style-type: none;
}

.solution > ul > li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    padding: 0;
    color: var(--text-dark);
    width: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.solution > ul > li > i {
    display: inline-block;
    margin-left: 8px;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--highlight-color);
    position: relative;
    top: 1px;
}

/* Ajustes para que se vea como en la imagen */
.solution h4 {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.solution {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem;
}

.solution p,
.solution li {
    color: var(--text-dark);
}

@media screen and (max-width: 768px) {
    .solution > ul > li {
        font-size: 0.85rem;
    }
    
    .solution > ul > li > i {
        font-size: 0.85rem;
    }
}

/* Menú móvil */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 31, 63, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    border-left: 1px solid var(--glass-border);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    padding: 15px 25px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
}

.mobile-menu a:hover, .mobile-menu a.active {
    background: rgba(0, 102, 204, 0.15);
    color: var(--highlight-color);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    /* Ajustes adicionales para móvil */
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Estilos para la página de servicios */
.services-hero {
    padding: 6rem 0 4rem;
    position: relative;
    text-align: center;
}

.service-progression {
    margin-top: 4rem;
    position: relative;
    padding: 2rem 0;
}

.progression-line {
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, #1a75ff);
    z-index: 1;
}

.progression-steps {
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #1a75ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
}

.service-cards {
    padding: 4rem 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #1a75ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.service-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-title h2 {
    margin: 0;
    color: #e6f3ff;
    font-size: 1.5rem;
}

.service-subtitle {
    color: #b3d9ff;
    margin: 0.5rem 0 0;
}

.service-objective {
    background: #001f3f;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.service-objective h3 {
    color: #e6f3ff;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.service-objective h3 i {
    margin-right: 0.5rem;
    color: #0066cc;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-column h4 {
    color: #e6f3ff;
    margin: 1.5rem 0 1rem;
    display: flex;
    align-items: center;
}

.detail-column h4 i {
    margin-right: 0.5rem;
    color: #0066cc;
}

.detail-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-column ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.tech-list li {
    display: flex;
    align-items: center;
}

.tech-list li i {
    margin-right: 0.5rem;
    color: #0066cc;
    width: 20px;
}

.service-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: #001f3f;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.service-pricing {
    text-align: right;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--highlight-color);
    margin: 0.5rem 0;
}

.price-note {
    color: var(--highlight-hover-color);
    font-size: 0.9rem;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--highlight-color), var(--highlight-hover-color));
    color: var(--primary-color);
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .progression-line {
        left: 10%;
        right: 10%;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto 1rem;
    }

    .service-details {
        grid-template-columns: 1fr;
    }

    .service-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-pricing {
        text-align: center;
    }
}

/* Estilos para las características principales */
.feature-section {
    padding: 4rem 0;
    position: relative;
    background: var(--primary-color);
}

.feature-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-item {
    background: linear-gradient(145deg, var(--card-bg), rgba(0, 51, 102, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 102, 204, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-color);
    box-shadow: 0 15px 35px rgba(0, 31, 63, 0.3);
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-title i {
    font-size: 2.2rem;
    color: var(--highlight-color);
    background: linear-gradient(135deg, var(--highlight-color), var(--highlight-hover-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-description {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 31, 63, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: rgba(0, 31, 63, 0.4);
    transform: translateX(5px);
}

.feature-point i {
    font-size: 1.2rem;
    color: var(--highlight-color);
    margin-top: 0.2rem;
}

.feature-point-content {
    flex: 1;
}

.feature-point-title {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-point-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Efecto de brillo en hover */
.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.feature-item:hover::after {
    left: 100%;
}

@media (max-width: 768px) {
    .feature-section {
        padding: 3rem 0;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

    .feature-title {
        font-size: 1.75rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .feature-points {
        grid-template-columns: 1fr;
    }
}

/* Sección multicloud */
.multicloud-section {
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.multicloud-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 102, 204, 0.15), transparent 70%);
    pointer-events: none;
}

.multicloud-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.multicloud-header {
    text-align: center;
    margin-bottom: 4rem;
}

.multicloud-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.multicloud-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--highlight-color), var(--highlight-hover-color));
    border-radius: 2px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    background: linear-gradient(145deg, rgba(0, 31, 63, 0.9), rgba(0, 51, 102, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 102, 204, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--highlight-color);
    box-shadow: 0 15px 35px rgba(0, 31, 63, 0.3);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--highlight-color), var(--highlight-hover-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.solution-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.4);
}

.solution-content {
    position: relative;
    z-index: 1;
}

.solution-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-description {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-feature {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.solution-feature i {
    color: var(--highlight-color);
    margin-right: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-feature {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        padding: 2rem 1.5rem;
    }

    .solution-icon {
        width: 70px;
        height: 70px;
    }

    .solution-icon i {
        font-size: 2rem;
    }

    .solution-title {
        font-size: 1.3rem;
    }

    .multicloud-header h2 {
        font-size: 2rem;
    }
}