/* EXOSTEM - Estilos Adicionales para Páginas Específicas */

/* Estilos Corporativos para Páginas Internas */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--pure-white);
    padding: 6rem 0 4rem;
    margin-top: 0;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(238, 126, 19, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Estilos para todos los heroes de páginas internas */
#productos-hero,
#servicios-hero,
#investigacion-hero,
#nosotros-hero,
#contacto-hero {
    margin-top: 0 !important;
    padding-top: 400px !important;
    padding-bottom: 6rem !important;
    min-height: 600px !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%) !important;
}

/* Hero de Contacto - Altura reducida */
#contacto-hero {
    padding-top: 100px !important;
    padding-bottom: 2.4rem !important;
    min-height: 200px !important;
}

/* Hero de Productos - Fondo azul corporativo sólido y destacado (igual que Contacto) */
#productos-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    padding-top: 100px !important;
    padding-bottom: 2.4rem !important;
    min-height: 200px !important;
}

#productos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 75% 25%, rgba(238, 126, 19, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 25% 75%, rgba(163, 175, 209, 0.25) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

#productos-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(56, 81, 156, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hero de Servicios - Fondo azul corporativo sólido y destacado (igual que Contacto) */
#servicios-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    padding-top: 100px !important;
    padding-bottom: 2.4rem !important;
    min-height: 200px !important;
}

#servicios-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 75% 25%, rgba(238, 126, 19, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 25% 75%, rgba(163, 175, 209, 0.25) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

#servicios-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(56, 81, 156, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hero de Investigación - Fondo azul corporativo sólido y destacado (igual que Contacto) */
#investigacion-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    padding-top: 100px !important;
    padding-bottom: 2.4rem !important;
    min-height: 200px !important;
}

#investigacion-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 75% 25%, rgba(238, 126, 19, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 25% 75%, rgba(163, 175, 209, 0.25) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

#investigacion-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(56, 81, 156, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hero de Nosotros - Fondo azul corporativo sólido y destacado (igual que Contacto) */
#nosotros-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    padding-top: 100px !important;
    padding-bottom: 2.4rem !important;
    min-height: 200px !important;
}

#nosotros-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 75% 25%, rgba(238, 126, 19, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 25% 75%, rgba(163, 175, 209, 0.25) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

#nosotros-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(56, 81, 156, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hero de Contacto - Fondo azul corporativo sólido y destacado */
#contacto-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
}

#contacto-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 75% 25%, rgba(238, 126, 19, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 25% 75%, rgba(163, 175, 209, 0.25) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

#contacto-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(56, 81, 156, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#productos-hero .container,
#servicios-hero .container,
#investigacion-hero .container,
#nosotros-hero .container,
#contacto-hero .container {
    overflow: visible !important;
    padding-top: 2rem !important;
    height: auto !important;
    position: relative;
    z-index: 2;
}

#productos-hero .col-lg-8,
#servicios-hero .col-lg-8,
#investigacion-hero .col-lg-8,
#nosotros-hero .col-lg-8,
#contacto-hero .col-lg-8 {
    padding-top: 1rem !important;
}

#productos-hero .row,
#servicios-hero .row,
#investigacion-hero .row,
#nosotros-hero .row,
#contacto-hero .row {
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
}

#productos-hero .page-title,
#productos-hero .page-subtitle,
#productos-hero .breadcrumb-nav,
#servicios-hero .page-title,
#servicios-hero .page-subtitle,
#servicios-hero .breadcrumb-nav,
#investigacion-hero .page-title,
#investigacion-hero .page-subtitle,
#investigacion-hero .breadcrumb-nav,
#nosotros-hero .page-title,
#nosotros-hero .page-subtitle,
#nosotros-hero .breadcrumb-nav,
#contacto-hero .page-title,
#contacto-hero .page-subtitle,
#contacto-hero .breadcrumb-nav {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-overflow: clip !important;
}

#productos-hero .page-title,
#servicios-hero .page-title,
#investigacion-hero .page-title,
#nosotros-hero .page-title,
#contacto-hero .page-title {
    line-height: 1.2 !important;
    padding-top: 0 !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
    transform: none !important;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 3px 20px rgba(0, 0, 0, 0.5),
        0 6px 30px rgba(0, 0, 0, 0.3);
    color: var(--pure-white) !important;
    font-weight: 800 !important;
}

#productos-hero .page-subtitle,
#servicios-hero .page-subtitle,
#investigacion-hero .page-subtitle,
#nosotros-hero .page-subtitle,
#contacto-hero .page-subtitle {
    line-height: 1.6 !important;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.4),
        0 4px 18px rgba(0, 0, 0, 0.25);
    color: var(--pure-white) !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
}

#productos-hero .breadcrumb-nav,
#servicios-hero .breadcrumb-nav,
#investigacion-hero .breadcrumb-nav,
#nosotros-hero .breadcrumb-nav,
#contacto-hero .breadcrumb-nav {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.75;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb-nav {
    margin-top: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--vital-orange);
}

.breadcrumb-item.active {
    color: var(--pure-white);
}

/* Estilos Corporativos para Filtros - Diseño Moderno */
.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2.5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.filter-btn {
    background: var(--pure-white);
    border: 2px solid rgba(56, 81, 156, 0.2);
    color: var(--primary-blue);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(56, 81, 156, 0.1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--vital-orange) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 81, 156, 0.3);
    border-color: transparent;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

/* Estilos Corporativos para Tarjetas de Productos - Diseño Moderno */
.product-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(56, 81, 156, 0.08);
    border: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--vital-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(56, 81, 156, 0.25);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    margin: 0;
    padding: 0;
}

.product-main-image {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    opacity: 1;
    visibility: visible;
    filter: brightness(1.1) contrast(1.15) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.product-card:hover .product-main-image {
    transform: scale(1.05);
    filter: brightness(1.15) contrast(1.2) saturate(1.2);
}

.product-image-wrapper .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(56, 81, 156, 0) 0%, rgba(56, 81, 156, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image-wrapper .product-overlay {
    opacity: 1;
}

.product-category {
    background: var(--vital-orange);
    color: var(--pure-white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(238, 126, 19, 0.3);
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    align-self: flex-end;
}

.product-actions .btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.product-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.product-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1rem;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, var(--technical-blue) 0%, rgba(163, 175, 209, 0.3) 100%);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-blue);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 81, 156, 0.2);
}

.product-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(56, 81, 156, 0.1);
}

.product-footer .btn {
    width: 100%;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(56, 81, 156, 0.2);
    transition: all 0.3s ease;
}

.product-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 81, 156, 0.3);
}

.product-price {
    font-weight: 600;
    color: var(--vital-orange);
    font-size: 1.1rem;
}

/* Mejoras adicionales para el diseño moderno */
.products-catalog {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

#products-grid {
    position: relative;
}

.product-item {
    margin-bottom: 2rem;
}

/* Animación de entrada para productos */
.product-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }
.product-item:nth-child(4) { animation-delay: 0.4s; }
.product-item:nth-child(5) { animation-delay: 0.5s; }
.product-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos Corporativos para Servicios Detallados */
.service-detail-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(56, 81, 156, 0.12);
    border: 1px solid rgba(56, 81, 156, 0.08);
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--vital-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(56, 81, 156, 0.2);
    border-color: rgba(56, 81, 156, 0.15);
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-icon-large {
    width: 90px;
    height: 90px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--pure-white);
    font-size: 2.2rem;
    box-shadow: 0 4px 12px rgba(56, 81, 156, 0.25);
    transition: all 0.4s ease;
}

.service-detail-card:hover .service-icon-large {
    background: var(--vital-orange);
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 20px rgba(238, 126, 19, 0.3);
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 400;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-process {
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--primary-blue);
    color: var(--pure-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(56, 81, 156, 0.2);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: var(--vital-orange);
    transform: scale(1.1);
}

.step-content h6 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.step-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Estilos para equipo */
.team-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 81, 156, 0.2);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(56, 81, 156, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--vital-orange);
    color: var(--pure-white);
    transform: scale(1.1);
}

.team-content {
    padding: 1.5rem;
}

.team-position {
    color: var(--vital-orange);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.team-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credential {
    background: var(--technical-blue);
    color: var(--primary-blue);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Estilos para instalaciones */
.facility-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 81, 156, 0.2);
}

.facility-image {
    height: 250px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-content {
    padding: 1.5rem;
}

.facility-content h4 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.facility-features {
    list-style: none;
    padding: 0;
}

.facility-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.facility-features i {
    margin-right: 0.5rem;
    color: var(--vital-orange);
}

/* Estilos para certificaciones */
.certification-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 81, 156, 0.2);
}

.cert-image {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.cert-image img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.certification-card:hover .cert-image img {
    filter: grayscale(0%);
}

.certification-card h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.certification-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cert-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Estilos para Participaciones y Eventos */
.participations-events-section {
    background: var(--pure-white);
}

.participation-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
    background: var(--pure-white);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.participation-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(56, 81, 156, 0.2);
}

.participation-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    opacity: 1;
    visibility: visible;
    min-width: 100%;
    min-height: 100%;
}

.cert-details small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Estilos para contacto */
.contact-form-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
}

.contact-details {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--vital-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-content h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.contact-content p {
    margin: 0;
    color: var(--text-light);
}

.contact-content a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-content a:hover {
    color: var(--vital-orange);
}

.social-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.social-contact h5 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* Estilos para mapa */
.contact-info .row:last-child {
    display: flex;
    align-items: stretch;
}

.contact-info .row:last-child > div {
    display: flex;
    flex-direction: column;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container iframe {
    border: none;
    flex: 1;
    width: 100%;
    min-height: 500px;
}

/* Estilos para tarjetas de información de contacto */
.contact-info-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(56, 81, 156, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(56, 81, 156, 0.15);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--pure-white);
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(56, 81, 156, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--vital-orange);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(238, 126, 19, 0.4);
}

.contact-info-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-info-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info-card-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card-text a:hover {
    color: var(--primary-blue);
}

/* Estilos para formulario de contacto */
.contact-form-wrapper {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .row {
    flex: 1;
}

.contact-form-subtitle {
    color: var(--vital-orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(56, 81, 156, 0.15);
    outline: none;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .form-control {
    padding-right: 3rem;
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-with-icon .form-control:focus ~ .input-icon {
    color: var(--vital-orange);
}

.btn-contact-submit {
    background: var(--primary-blue);
    color: var(--pure-white);
    border: none;
    border-radius: 8px;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(56, 81, 156, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-contact-submit::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: left 0.5s ease;
}

.btn-contact-submit:hover {
    background: var(--vital-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 126, 19, 0.4);
    color: var(--pure-white);
}

.btn-contact-submit:hover::before {
    left: 100%;
}

.btn-contact-submit:active {
    transform: translateY(0);
}

/* Estilos para sección Historia y Misión */
.about-history {
    position: relative;
    background-image: url('../assets/img/nosotros/historia-fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.about-history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.about-history::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    pointer-events: none;
    z-index: 1;
}

.about-history .container {
    position: relative;
    z-index: 2;
}

.about-history .about-content,
.about-history .about-image {
    position: relative;
    z-index: 2;
}

.about-history.py-5 {
    padding-bottom: 0 !important;
    padding-top: 3rem !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
    position: relative;
    min-height: auto;
}

.about-history + section {
    margin-top: 0 !important;
    padding-top: 5rem !important;
}

.about-history .container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    position: relative;
}

.about-history .row {
    align-items: flex-end;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    position: relative;
    min-height: 100%;
}

.about-history .col-lg-6:last-child {
    display: block;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible;
    position: relative;
    align-self: flex-end;
    height: 100%;
}

.about-history .col-lg-6:first-child {
    padding-bottom: 0 !important;
}

.about-history h2,
.about-history h3,
.about-history h4 {
    color: var(--text-dark) !important;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.about-history p {
    color: var(--text-dark) !important;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}

.about-history .about-content {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.about-history .col-lg-6:last-child img {
    max-width: 130%;
    width: 130%;
    height: auto;
    display: block;
    opacity: 0;
    visibility: visible;
    filter: none;
    border: none;
    background: transparent;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain;
    box-shadow: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50px);
    z-index: 1;
    pointer-events: none;
    object-position: bottom;
}

.about-history .col-lg-6:last-child img.page-loaded {
    animation: slideUpImage 1s ease-out forwards;
    animation-delay: 0.5s;
}

.about-history .col-lg-6:last-child img.loaded {
    animation: slideUpImage 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes slideUpImage {
    0% {
        opacity: 0;
        transform: translate(-50%, 50px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.about-history .image-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 1rem;
    border-radius: 8px;
    z-index: 2;
    opacity: 0.9;
}

.about-history .overlay-content h4 {
    color: var(--primary-blue) !important;
}

.about-history .overlay-content p {
    color: var(--text-dark) !important;
}

/* Estilos para FAQ */
.faq-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(56, 81, 156, 0.1);
}

.faq-section .accordion-button {
    background: var(--pure-white);
    border: none;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 1.5rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-blue);
    color: var(--pure-white);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-body {
    background: var(--light-gray);
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Estilos para blog */
.featured-post {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    margin-bottom: 3rem;
}

.featured-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--vital-orange);
    color: var(--pure-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-title {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.post-excerpt {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-light);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--technical-blue);
    color: var(--primary-blue);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.post-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 81, 156, 0.2);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 1.5rem;
}

.read-more {
    color: var(--vital-orange);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--soft-orange);
}

/* Estilos para newsletter */
.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    padding: 12px 16px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    border-color: var(--pure-white);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

/* Estilos para legal */
.legal-section {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
}

.legal-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--technical-blue);
}

.legal-section h3 {
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h4 {
    color: var(--primary-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-section ul {
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.company-info p {
    margin-bottom: 0.5rem;
}

/* Estilos Corporativos para Estadísticas */
.stat-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(56, 81, 156, 0.12);
    border: 1px solid rgba(56, 81, 156, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--vital-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(56, 81, 156, 0.2);
    border-color: rgba(56, 81, 156, 0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--pure-white);
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(56, 81, 156, 0.25);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: var(--vital-orange);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(238, 126, 19, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--vital-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

/* Estilos para línea de tiempo */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--technical-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--vital-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -30px;
}

.timeline-content {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
}

.timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Estilos Corporativos para Publicaciones */
.publication-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(56, 81, 156, 0.12);
    border: 1px solid rgba(56, 81, 156, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.publication-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--vital-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.publication-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(56, 81, 156, 0.2);
    border-color: rgba(56, 81, 156, 0.15);
}

.publication-card:hover::before {
    transform: scaleX(1);
}

.publication-header h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.publication-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.journal {
    background: var(--vital-orange);
    color: var(--pure-white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.year {
    background: var(--technical-blue);
    color: var(--primary-blue);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.publication-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.publication-authors {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.publication-links {
    display: flex;
    gap: 1rem;
}

/* Estilos Corporativos para Proyectos */
.project-card {
    background: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(56, 81, 156, 0.12);
    border: 1px solid rgba(56, 81, 156, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--vital-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(56, 81, 156, 0.2);
    border-color: rgba(56, 81, 156, 0.15);
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--vital-orange);
    color: var(--pure-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-content {
    padding: 1.5rem;
}

.project-content h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-details {
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.detail-item i {
    margin-right: 0.5rem;
    width: 16px;
}

.project-progress {
    margin-top: 1rem;
}

.progress {
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-blue), var(--vital-orange));
    height: 100%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Estilos para colaboraciones */
.collaboration-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.collaboration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 81, 156, 0.2);
}

.collab-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.collab-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.collaboration-card:hover .collab-logo img {
    filter: grayscale(0%);
}

.collaboration-card h5 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.collaboration-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.alliance-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Estilos para regulaciones */
.regulation-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.regulation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 81, 156, 0.2);
}

.regulation-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.regulation-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.regulation-card:hover .regulation-logo img {
    filter: grayscale(0%);
}

.regulation-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.regulation-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.regulation-status {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.approved {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

/* Estilos para membresías */
.membership-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 81, 156, 0.2);
}

.membership-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.membership-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.membership-card:hover .membership-logo img {
    filter: grayscale(0%);
}

.membership-card h5 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.membership-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.membership-status {
    margin-top: 1rem;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

/* Estilos para comerciales */
.commercial-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.commercial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 81, 156, 0.2);
}

.commercial-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.commercial-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.commercial-card:hover .commercial-logo img {
    filter: grayscale(0%);
}

.commercial-card h5 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.commercial-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Estilos para MVV */
.mv-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 81, 156, 0.2);
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--vital-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--pure-white);
    font-size: 2.5rem;
}

.mv-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.values-list i {
    margin-right: 0.5rem;
    color: var(--vital-orange);
}

/* Estilos para tecnología */
.technology-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(56, 81, 156, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.technology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 81, 156, 0.2);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--vital-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--pure-white);
    font-size: 2rem;
}

.technology-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.technology-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive para timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: -30px !important;
        right: auto !important;
    }
}

/* Page Loader - Modern Design */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a1929;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
    overflow: hidden;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loader-gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 81, 156, 0.3) 0%, transparent 70%);
    animation: gradientMove 8s ease-in-out infinite;
    top: -50%;
    left: -50%;
}

.loader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.loader-logo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 81, 156, 0.2) 0%, rgba(238, 126, 19, 0.2) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.loader-logo-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--vital-orange);
    border-right-color: var(--primary-blue);
    animation: rotateBorder 2s linear infinite;
}

.loader-logo-img {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
    animation: logoPulse 2s ease-in-out infinite;
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--vital-orange) 100%);
    border-radius: 10px;
    animation: progressLoad 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(238, 126, 19, 0.5);
}

.loader-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.loader-text-main {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--pure-white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-text-sub {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s both;
}

@keyframes gradientMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20%, 20%) scale(1.1);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes progressLoad {
    0% {
        width: 0%;
        left: 0;
    }
    50% {
        width: 70%;
        left: 0;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
