/**
 * SOBRE NOSOTROS - Zamworg
 * Estilos específicos para la página sobre-nosotros
 */

/* ============================================
   HERO SECTION - CORREGIDO
   ============================================ */
.about-hero {
    min-height: 100vh;
    position: relative;
    padding: 80px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f1720 50%, #1a1a2e 100%);
}

/* Fondo con animaciones CSS */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Estrellas */
.stars-container {
    position: absolute;
    inset: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite ease-in-out;
}

.star:nth-child(odd) {
    animation-duration: 3s;
}

.star:nth-child(3n) {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 4px white;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Cometas animados con CSS - MÁS LENTOS */
.comet {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    top: 15%;
    left: -5%;
    animation: comet-fall 12s infinite linear;
    box-shadow: 0 0 10px white, 0 0 20px #de5305;
}

.comet::after {
    content: '';
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(222, 83, 5, 0.6), white);
    transform-origin: right center;
}

.comet-2 {
    top: 35%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.comet-3 {
    top: 55%;
    animation-delay: 8s;
    animation-duration: 18s;
}

@keyframes comet-fall {
    0% {
        left: -5%;
        top: 15%;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 105%;
        top: 65%;
        opacity: 0;
    }
}

/* Montañas */
.mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
}

.mountains svg {
    width: 100%;
    height: 100%;
}

/* Banner de oferta - barra completa */
.offer-banner {
    position: relative;
    z-index: 1;
    background: rgba(30, 30, 30, 0.9);
    border-top: 1px solid rgba(222, 83, 5, 0.3);
    border-bottom: 1px solid rgba(222, 83, 5, 0.3);
    padding: 12px 0;
    text-align: center;
    margin-bottom: 60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.offer-text {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

/* Título principal centrado */
.hero-title-wrapper {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.about-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

/* Highlight box - FONDO NEGRO, TEXTO BLANCO */
.highlight-box {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 0.1em 0.4em;
    position: relative;
    margin-left: 0.2em;
}

.highlight-box .dot {
    color: #de5305;
    font-weight: 900;
}

/* Grid de contenido */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-left {
    padding-right: 40px;
}

/* Subtítulo - TAMAÑO REDUCIDO */
.hero-subtitle {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-subtitle .highlight-orange {
    display: inline-block;
    background: #de5305;
    color: #ffffff;
    padding: 0.1em 0.3em;
    position: relative;
}

.hero-subtitle .highlight-orange .dot-black {
    color: #000000;
    font-weight: 900;
}

/* Descripción en BLANCO para que se vea bien */
.hero-description {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content-left {
        padding-right: 0;
    }
    
    .hero-content-right {
        order: -1;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .offer-banner {
        padding: 10px 20px;
    }
    
    .offer-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title-wrapper {
        margin-bottom: 50px;
    }
    
    .hero-content-grid {
        gap: 40px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* ============================================
   LOGO EVOLUTION SECTION
   ============================================ */
.logo-evolution-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
    position: relative;
}

.logo-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
    padding: 0 20px;
}

.logo-timeline-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #de5305, #de5305, transparent);
    z-index: 0;
}

.logo-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    flex: 1;
    max-width: 180px;
}

.logo-year {
    font-size: 0.9rem;
    font-weight: 600;
    color: #de5305;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(222, 83, 5, 0.1);
    border: 1px solid rgba(222, 83, 5, 0.3);
    border-radius: 99px;
}

.logo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    width: 100%;
}

.logo-card:hover {
    transform: translateY(-10px);
    background: rgba(222, 83, 5, 0.1);
    border-color: rgba(222, 83, 5, 0.3);
    box-shadow: 0 20px 40px rgba(222, 83, 5, 0.2);
}

.logo-card--current {
    background: rgba(222, 83, 5, 0.15);
    border-color: #de5305;
}

.logo-card--current:hover {
    background: rgba(222, 83, 5, 0.25);
}

.logo-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.logo-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.logo-card:hover .logo-image img {
    transform: scale(1.1);
}

.logo-name {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
    margin: 0;
}

.logo-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #de5305;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
    .logo-timeline {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }
    
    .logo-timeline-line {
        display: none;
    }
    
    .logo-item {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .logo-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-item {
        max-width: 200px;
        width: 100%;
    }
}
/* ============================================
   ADN ZAMWORG - 4 PILARES
   ============================================ */
.adn-section {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.adn-header {
    text-align: center;
    margin-bottom: 60px;
}

.adn-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.adn-section-title .highlight-box {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 0.1em 0.3em;
    position: relative;
}

.adn-section-title .highlight-box .dot {
    color: #de5305;
    font-weight: 900;
}

.adn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.adn-card {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.adn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #de5305, #ff8c42);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.adn-card:hover {
    background: rgba(222, 83, 5, 0.08);
    border-color: rgba(222, 83, 5, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(222, 83, 5, 0.15);
}

.adn-card:hover::before {
    transform: scaleX(1);
}

.adn-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1;
}

.adn-number .dot {
    color: #de5305;
    font-size: 2.5rem;
}

.adn-line {
    width: 60px;
    height: 2px;
    background: var(--white);
    margin-bottom: 24px;
    transition: width 0.4s ease;
}

.adn-card:hover .adn-line {
    width: 100px;
    background: #de5305;
}

.adn-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.adn-desc {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .adn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .adn-grid {
        grid-template-columns: 1fr;
    }
    
    .adn-card {
        padding: 24px;
    }
    
    .adn-number {
        font-size: 2.5rem;
    }
}

/* ============================================
   NUESTRA TRAYECTORIA - TIMELINE
   ============================================ */
.trayectoria-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.trayectoria-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(222, 83, 5, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(222, 83, 5, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 24px 0;
}

.timeline-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 40px 0 50px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.trayectoria-desc {
    max-width: 780px;
    margin: 24px auto 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-light);
    text-align: center;
}

.timeline-tab {
    padding: 16px 48px;
    background: transparent;
    border: none;
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.timeline-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #de5305;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-tab:hover {
    color: var(--white);
}

.timeline-tab.active {
    color: #de5305;
}

.timeline-tab.active::after {
    transform: scaleX(1);
}

.timeline-panel {
    display: none;
    animation: panel-fade 0.4s ease;
}

.timeline-panel.active {
    display: block;
}

@keyframes panel-fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, rgba(222, 83, 5, 0.15) 0%, rgba(222, 83, 5, 0.75) 50%, rgba(222, 83, 5, 0.12) 100%);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(222, 83, 5, 0.18);
}

.timeline-line::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.85) 50%, transparent 100%);
    opacity: 0.45;
    animation: timeline-flow 4.5s linear infinite;
}

@keyframes timeline-flow {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.timeline-item {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 28px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-item.animate {
    opacity: 0;
    transform: translateY(30px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #de5305 0%, #ff6b35 100%);
    border-radius: 50%;
    border: 3px solid #0f0f1a;
    box-shadow: 0 0 0 4px rgba(222, 83, 5, 0.14), 0 0 18px rgba(222, 83, 5, 0.45);
    z-index: 10;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.18);
    box-shadow: 0 0 0 6px rgba(222, 83, 5, 0.16), 0 0 24px rgba(222, 83, 5, 0.55);
}

.timeline-dot--pulse {
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%, 100% { 
        box-shadow: 0 0 0 2px rgba(222, 83, 5, 0.3), 0 0 0 8px rgba(222, 83, 5, 0.1);
    }
    50% { 
        box-shadow: 0 0 0 4px rgba(222, 83, 5, 0.5), 0 0 0 12px rgba(222, 83, 5, 0.2);
    }
}

.timeline-content {
    width: calc(50% - 38px);
    padding: 22px 24px 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 12px 30px rgba(0, 0, 0, 0.18);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #de5305, #ff6b35);
    transform: scaleX(1);
    opacity: 0.9;
}

.timeline-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(222, 83, 5, 0.10), transparent 28%);
    pointer-events: none;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    background:
        radial-gradient(circle at top right, rgba(222, 83, 5, 0.10), transparent 28%);
}

.timeline-item:nth-child(even) .timeline-content::after {
    background:
        radial-gradient(circle at top left, rgba(222, 83, 5, 0.10), transparent 28%);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(222, 83, 5, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24), 0 0 28px rgba(222, 83, 5, 0.10);
}

.timeline-year {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #de5305;
    padding: 6px 13px;
    background: rgba(222, 83, 5, 0.1);
    border-radius: 99px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.62;
}

.timeline-item--featured .timeline-content {
    background: linear-gradient(135deg, rgba(222, 83, 5, 0.1) 0%, rgba(222, 83, 5, 0.05) 100%);
    border-color: rgba(222, 83, 5, 0.3);
}

.timeline-item--featured .timeline-year {
    background: #de5305;
    color: white;
}

.timeline-item--featured .timeline-content {
    padding: 24px 26px 22px;
    border-color: rgba(222, 83, 5, 0.42);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26), 0 0 32px rgba(222, 83, 5, 0.10);
}

.timeline-item--featured .timeline-title {
    font-size: 1.12rem;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-container {
        margin-top: 56px;
        padding: 4px 10px 0 54px;
    }

    .timeline-content {
        width: 100%;
        padding: 20px 20px 18px;
    }

    .timeline-line {
        left: 18px;
        transform: none;
    }

    .timeline-dot {
        left: -36px;
        top: 24px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        display: block;
        justify-content: initial;
        margin-bottom: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }

    .timeline-item:hover .timeline-dot {
        transform: scale(1.18);
    }

    .timeline-title {
        font-size: 1.02rem;
    }

    .timeline-desc {
        font-size: 0.89rem;
    }
}

.coverage-section {
    padding: 100px 0;
    position: relative;
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background: #0a0a12;
    min-height: 550px;
}

.map-real {
    width: 100%;
    height: 550px !important;
    min-height: 550px;
    background: #0a0a12;
    position: relative;
    z-index: 1;
}

.map-real .leaflet-container {
    background: #0a0a12 !important;
    width: 100%;
    height: 100%;
}

/* Asegurar que Leaflet se vea correctamente */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
    position: absolute;
    left: 0;
    top: 0;
}

.leaflet-container {
    overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Marcadores tipo Pin */
.custom-pin {
    background: transparent;
    border: none;
}

/* Tooltip del mapa */
.map-tooltip {
    position: absolute;
    background: rgba(15, 15, 26, 0.98);
    border: 1px solid rgba(222, 83, 5, 0.4);
    border-radius: 16px;
    padding: 20px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(222, 83, 5, 0.1);
    backdrop-filter: blur(10px);
}

.map-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip-flag {
    font-size: 1.8rem;
}

.tooltip-country {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.tooltip-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tooltip-phone,
.tooltip-email {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin: 0;
}

.tooltip-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
    width: fit-content;
}

/* Leyenda del mapa */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.legend-pin {
    width: 16px;
    height: 24px;
    background: #de5305;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
}

.legend-pin--main {
    width: 20px;
    height: 30px;
    box-shadow: 0 0 15px rgba(222, 83, 5, 0.5);
}

.legend-pin--main::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ff6b35;
    border-radius: 50%;
}

.legend-pin--presence {
    width: 14px;
    height: 22px;
}

.legend-pin--presence::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
}

.legend-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* Tarjetas de países */
.coverage-countries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .coverage-countries {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-real {
        height: 450px;
    }
}

@media (max-width: 640px) {
    .coverage-countries {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        max-width: 100%;
        margin: 40px 16px;
        border-radius: 16px;
    }
    
    .map-real {
        height: 350px;
    }
    
    .map-legend {
        gap: 16px;
    }
}

.country-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.country-card:hover {
    background: rgba(222, 83, 5, 0.1);
    border-color: rgba(222, 83, 5, 0.3);
    transform: translateY(-4px);
}

.country-card--main {
    border-color: #de5305;
    background: rgba(222, 83, 5, 0.1);
}

.country-flag {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.country-code {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.country-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.country-phone {
    font-size: 0.95rem;
    color: #de5305;
    margin-bottom: 4px;
}

.country-email {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.country-badge {
    display: inline-flex;
    align-items: center;
    background: #de5305;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.75rem;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.country-badge svg {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    stroke: currentColor;
}

/* Banderas SVG en tarjetas */
.country-flag-svg {
    width: 48px;
    height: 36px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.country-flag-svg:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 4px 15px rgba(222,83,5,0.3);
}

.country-flag-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Título del mapa - máximo 2 líneas */
.map-title {
    font-size: 2.2rem;
    line-height: 1.3;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .map-title {
        font-size: 1.8rem;
    }
}

/* Leyenda con pins SVG */
.legend-pin-svg {
    filter: drop-shadow(0 2px 4px rgba(222,83,5,0.3));
}

/* ============================================
   NUEVAS SECCIONES - VALORES, MISIÓN, COMPROMISO
   ============================================ */

/* Sección de Valores (Tecnología, Personas, Cliente) */
.valores-section {
    padding: 100px 0;
    background: var(--dark);
}

.valores-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.valor-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.valor-card--reverse {
    direction: rtl;
}

.valor-card--reverse .valor-content {
    direction: ltr;
}

.valor-card--reverse .valor-image {
    direction: ltr;
}

.valor-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.valor-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.valor-image:hover img {
    transform: scale(1.05);
}

.valor-content {
    padding: 20px 0;
}

.valor-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #de5305;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    background: rgba(222, 83, 5, 0.1);
    border: 1px solid rgba(222, 83, 5, 0.3);
    padding: 8px 16px;
    border-radius: 99px;
}

.valor-title {
    font-size: 1.9rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.valor-title .highlight-box {
    display: inline;
    padding: 2px 10px;
    white-space: nowrap;
}

.valor-desc {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* Sección Misión Online */
.mision-section {
    padding: 60px 0 30px 0;
    background: #0a0a0a;
}

.mision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mision-content {
    padding: 20px 0;
}

.mision-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.2;
    max-width: 90%;
}

.mision-title .highlight-box {
    display: inline;
    padding: 2px 8px;
    white-space: nowrap;
}

.mision-text {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.mision-text:last-child {
    margin-bottom: 0;
}

/* Texto puente entre Misión y Compromiso */
.mision-bridge-section {
    padding: 30px 0;
    background: #0a0a0a;
    text-align: center;
}

.mision-bridge-text {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .mision-bridge-section {
        padding: 20px 20px;
    }
    
    .mision-bridge-text {
        font-size: 0.95rem;
    }
}

.mision-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    max-height: 400px;
}

.mision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sección Compromiso y Eficiencia */
.compromiso-section {
    padding: 30px 0 60px 0;
    background: #0a0a0a;
}

.compromiso-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.compromiso-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    max-height: 400px;
}

.compromiso-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.compromiso-content {
    padding: 20px 0;
}

.compromiso-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.2;
    max-width: 100%;
}

.compromiso-title .highlight-box {
    display: inline;
    padding: 2px 8px;
    white-space: nowrap;
}

.compromiso-text {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* Responsive para las nuevas secciones */
@media (max-width: 992px) {
    .valor-card,
    .mision-grid,
    .compromiso-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .valor-card--reverse {
        direction: ltr;
    }
    
    .valor-title {
        font-size: 1.7rem;
    }
    
    .mision-title,
    .compromiso-title {
        font-size: 1.9rem;
    }
    
    .valor-image,
    .mision-image,
    .compromiso-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .valores-section,
    .mision-section,
    .compromiso-section {
        padding: 60px 0;
    }
    
    .valores-grid {
        gap: 60px;
    }
    
    .valor-title {
        font-size: 1.5rem;
    }
    
    .mision-title,
    .compromiso-title {
        font-size: 1.6rem;
    }
    
    .valor-desc,
    .mision-text,
    .compromiso-text {
        font-size: 0.95rem;
    }
}

/* ============================================
   SECCIÓN MISIÓN Y VISIÓN - DISEÑO LIMPIO
   ============================================ */

.mision-vision-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.mv-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(222, 83, 5, 0.15);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: rgba(222, 83, 5, 0.3);
    transform: translateY(-5px);
}

.mv-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.mv-card__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #de5305;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    background: rgba(222, 83, 5, 0.1);
    border-radius: 99px;
    border: 1px solid rgba(222, 83, 5, 0.2);
}

.mv-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #de5305 0%, #ff6b35 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-card__icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.mv-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.mv-card__title span {
    color: #de5305;
}

.mv-card__text {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Stats en Misión */
.mv-card__stats {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mv-stat {
    text-align: center;
}

.mv-stat__num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #de5305;
    line-height: 1;
    margin-bottom: 4px;
}

.mv-stat__label {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Goals en Visión */
.mv-card__goals {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mv-goal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.mv-goal svg {
    width: 18px;
    height: 18px;
    color: #de5305;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .mv-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .mision-vision-section {
        padding: 60px 0;
    }
    
    .mv-card__title {
        font-size: 1.3rem;
    }
    
    .mv-stat__num {
        font-size: 1.8rem;
    }
}

/* Descripción de Misión y Visión */
.mv-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 24px auto 0;
    text-align: center;
}

@media (max-width: 768px) {
    .mv-desc {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* ============================================
   SECCIÓN DESARROLLO WEB B2B
   ============================================ */

.b2b-dev-section {
    background: #0a0a0a;
}

/* Visual de Desarrollo */
.dev-visual-bg {
    background: linear-gradient(145deg, rgba(222, 83, 5, 0.05) 0%, rgba(15, 15, 26, 0.8) 100%);
}

/* Pantallas de código */
.dev-screen {
    position: absolute;
    background: #0f0f1a;
    border: 1px solid rgba(222, 83, 5, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dev-screen--main {
    top: 10%;
    left: 5%;
    width: 55%;
    height: 55%;
    z-index: 2;
    animation: devFloat 6s ease-in-out infinite;
}

.dev-screen--preview {
    bottom: 10%;
    right: 5%;
    width: 45%;
    height: 45%;
    z-index: 1;
    animation: devFloat 6s ease-in-out infinite reverse;
}

@keyframes devFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.dev-screen-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(222, 83, 5, 0.1);
    border-bottom: 1px solid rgba(222, 83, 5, 0.1);
}

.dev-dots {
    display: flex;
    gap: 6px;
}

.dev-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #de5305;
}

.dev-dots span:nth-child(2) {
    background: #ff6b35;
}

.dev-dots span:nth-child(3) {
    background: rgba(222, 83, 5, 0.5);
}

.dev-filename {
    font-size: 0.75rem;
    color: var(--gray-light);
    font-family: 'Courier New', monospace;
}

/* Código con sintaxis */
.dev-code {
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    line-height: 1.8;
}

.dev-code-line {
    color: #a0a0a0;
    animation: typing 0.5s ease forwards;
    opacity: 0;
}

.dev-code-line:nth-child(1) { animation-delay: 0.2s; }
.dev-code-line:nth-child(2) { animation-delay: 0.4s; }
.dev-code-line:nth-child(4) { animation-delay: 0.6s; }
.dev-code-line:nth-child(5) { animation-delay: 0.8s; }
.dev-code-line:nth-child(6) { animation-delay: 1s; }
.dev-code-line:nth-child(7) { animation-delay: 1.2s; }

@keyframes typing {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.dev-keyword {
    color: #ff6b35;
}

.dev-var {
    color: #de5305;
}

.dev-string {
    color: #4ade80;
}

.dev-comment {
    color: #6b7280;
}

.dev-func {
    color: #60a5fa;
}

/* Preview content */
.dev-preview-content {
    padding: 20px;
}

.dev-preview-box {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, rgba(222, 83, 5, 0.3) 0%, rgba(255, 107, 53, 0.3) 100%);
    border-radius: 8px;
    margin-bottom: 15px;
    animation: previewPulse 3s ease-in-out infinite;
}

@keyframes previewPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.dev-preview-lines div {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.dev-preview-lines div:nth-child(1) { width: 100%; }
.dev-preview-lines div:nth-child(2) { width: 80%; }
.dev-preview-lines div:nth-child(3) { width: 60%; }

/* Iconos flotantes de tecnología */
.dev-float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(15, 15, 26, 0.95);
    border: 1px solid rgba(222, 83, 5, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: iconFloat 4s ease-in-out infinite;
    z-index: 10;
}

.dev-float-icon svg {
    width: 24px;
    height: 24px;
}

.dev-float-icon--1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.dev-float-icon--2 {
    bottom: 25%;
    left: 2%;
    animation-delay: 1.3s;
}

.dev-float-icon--3 {
    bottom: 10%;
    right: 35%;
    animation-delay: 2.6s;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Feature cards posicionadas */
.dev-feature--1 {
    top: 15%;
    right: 5%;
}

.dev-feature--2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(135deg, rgba(222, 83, 5, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
    z-index: 3;
}

.dev-feature--2 svg {
    width: 35px;
    height: 35px;
    color: #de5305;
}

.dev-feature--3 {
    bottom: 15%;
    right: 8%;
}

/* Responsive */
@media (max-width: 992px) {
    .dev-screen--main,
    .dev-screen--preview {
        width: 45%;
        height: 40%;
    }
    
    .dev-code {
        font-size: 0.65rem;
        padding: 10px;
    }
    
    .dev-float-icon {
        width: 40px;
        height: 40px;
    }
    
    .dev-float-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .dev-screen--main {
        top: 5%;
        left: 5%;
        width: 90%;
        height: 35%;
    }
    
    .dev-screen--preview {
        bottom: 5%;
        right: 5%;
        width: 70%;
        height: 30%;
    }
    
    .dev-feature--1,
    .dev-feature--3 {
        display: none;
    }
}

.cloud-hosting-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.cloud-hosting-section::before {
    display: none;
}

.cloud-hosting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cloud-hosting-content {
    padding: 20px 0;
}

.cloud-hosting-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #de5305;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(222, 83, 5, 0.1);
    border-radius: 99px;
    border: 1px solid rgba(222, 83, 5, 0.2);
}

.cloud-hosting-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.cloud-hosting-title .highlight-box {
    display: inline;
    padding: 4px 12px;
}

.cloud-hosting-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cloud-hosting-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 90%;
}

.cloud-hosting-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #de5305 0%, #ff6b35 50%, #de5305 100%);
    background-size: 200% 200%;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 36px;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(222, 83, 5, 0.4),
        0 0 0 0 rgba(222, 83, 5, 0.7);
    position: relative;
    overflow: hidden;
    animation: btnGradient 3s ease infinite;
}

@keyframes btnGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cloud-hosting-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cloud-hosting-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(222, 83, 5, 0.5),
        0 0 0 10px rgba(222, 83, 5, 0.1);
    animation: btnPulse 1.5s ease infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 20px 40px rgba(222, 83, 5, 0.5), 0 0 0 0 rgba(222, 83, 5, 0.4); }
    50% { box-shadow: 0 20px 40px rgba(222, 83, 5, 0.5), 0 0 0 15px rgba(222, 83, 5, 0); }
}

.cloud-hosting-btn:hover::before {
    left: 100%;
}

.cloud-hosting-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cloud-hosting-btn:hover svg {
    transform: translateX(8px);
}

.cloud-hosting-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* Visual de Cloud */
.cloud-hosting-visual {
    position: relative;
    height: 400px;
}

.cloud-visual-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(222, 83, 5, 0.15);
    border-radius: 24px;
    overflow: hidden;
}

.cloud-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cloud-line {
    animation: cloudPulse 3s ease-in-out infinite;
}

@keyframes cloudPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.cloud-node {
    animation: cloudNodePulse 2s ease-in-out infinite;
}

@keyframes cloudNodePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Feature Cards */
.cloud-feature {
    position: absolute;
    background: rgba(15, 15, 26, 0.95);
    border: 1px solid rgba(222, 83, 5, 0.3);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cloud-feature--1 {
    top: 20%;
    right: 15%;
}

.cloud-feature--2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(135deg, rgba(222, 83, 5, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
}

.cloud-feature--2 svg {
    width: 40px;
    height: 40px;
    color: #de5305;
}

.cloud-feature--3 {
    bottom: 20%;
    right: 10%;
}

.cloud-feature-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #de5305;
    margin-bottom: 4px;
}

.cloud-feature-label {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .cloud-hosting-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cloud-hosting-title {
        font-size: 2.2rem;
    }
    
    .cloud-hosting-subtitle {
        font-size: 1.6rem;
    }
    
    .cloud-hosting-visual {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .cloud-hosting-section {
        padding: 60px 0;
    }
    
    .cloud-hosting-title {
        font-size: 1.8rem;
    }
    
    .cloud-hosting-subtitle {
        font-size: 1.3rem;
    }
    
    .cloud-feature--1,
    .cloud-feature--3 {
        padding: 12px 16px;
    }
    
    .cloud-feature-value {
        font-size: 1.1rem;
    }
}

.numbers-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(222, 83, 5, 0.03) 50%, transparent 100%);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.number-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.number-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.number-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.number-prefix {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-weight: 500;
}

.counter {
    font-size: 3rem;
    font-weight: 800;
    color: #de5305;
    line-height: 1;
}

.number-suffix {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.number-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 16px;
}

.number-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #de5305, #ff8c42);
    border-radius: 99px;
    transition: width 1.5s ease-out;
}

.number-desc {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-section {
    padding: 100px 0;
}

.timeline-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.timeline-tab {
    padding: 12px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    color: var(--gray-light);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-tab:hover {
    border-color: #de5305;
    color: var(--white);
}


/* ============================================
   FUNDADORES
   ============================================ */
.founders-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(222, 83, 5, 0.02) 50%, transparent 100%);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 60px auto 0;
}

.founder-card {
    position: relative;
}

.founder-card--main {
    transform: scale(1.05);
}

.founder-image {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

/* ============================================
   FUNDADORES - NUEVO DISEÑO CON ANIMACIONES
   ============================================ */
.founders-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.founder-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s ease;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #de5305, transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.founder-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(222, 83, 5, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(222, 83, 5, 0.1);
}

.founder-card:hover::before {
    transform: scaleX(1);
}

.founder-card--featured {
    border-color: rgba(222, 83, 5, 0.2);
}

.founder-card--featured:hover {
    border-color: rgba(222, 83, 5, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 60px rgba(222, 83, 5, 0.2);
}

/* Tech Particles Animation */
.tech-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    pointer-events: none;
    z-index: 2;
}

.tech-particles span {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: rgba(222, 83, 5, 0.6);
    font-weight: bold;
    animation: float-particle 3s ease-in-out infinite;
}

.tech-particles span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.tech-particles span:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.tech-particles span:nth-child(3) { bottom: 25%; left: 10%; animation-delay: 1s; }
.tech-particles span:nth-child(4) { bottom: 15%; right: 20%; animation-delay: 1.5s; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-15px) rotate(5deg); opacity: 0.8; }
}

/* Glitch Effect */
.image-glitch {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(222, 83, 5, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    animation: glitch-scan 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glitch-scan {
    0%, 90%, 100% { opacity: 0; transform: translateX(-100%); }
    92% { opacity: 1; transform: translateX(100%); }
}

/* Scan Line */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(222, 83, 5, 0.5);
    box-shadow: 0 0 10px rgba(222, 83, 5, 0.8);
    animation: scan 3s linear infinite;
    opacity: 0;
    pointer-events: none;
}

.founder-card:hover .scan-line {
    opacity: 1;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Corner Decorations */
.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(222, 83, 5, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
}

.corner.top-left { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.corner.top-right { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.corner.bottom-left { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.corner.bottom-right { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.founder-card:hover .corner {
    opacity: 1;
    width: 30px;
    height: 30px;
}

/* Visual - Imagen y efectos */
.founder-visual {
    position: relative;
    margin-bottom: 30px;
}

.founder-image-wrapper {
    position: relative;
    width: 160px;
    height: 200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(222, 83, 5, 0.3);
    transition: all 0.5s ease;
}

.founder-card:hover .founder-image-wrapper {
    border-color: #de5305;
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(222, 83, 5, 0.3);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.founder-card:hover .founder-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.founder-image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(222, 83, 5, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image-placeholder svg {
    width: 80%;
    height: 80%;
}

/* Glow effect */
.founder-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(222, 83, 5, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.founder-card:hover .founder-glow {
    opacity: 1;
}

.founder-glow--large {
    width: 250px;
    height: 250px;
}

/* Contenido */
.founder-content {
    text-align: center;
}

.founder-header {
    margin-bottom: 20px;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.founder-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--gray-light);
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
}

.founder-badge--primary {
    background: rgba(222, 83, 5, 0.2);
    color: #de5305;
}

/* Founder Label */
.founder-label {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--gray-light);
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-label--primary {
    background: rgba(222, 83, 5, 0.2);
    color: #de5305;
}

/* Founder Role */
.founder-role {
    display: block;
    font-size: 0.95rem;
    color: #de5305;
    margin-top: 4px;
}

/* Skills Tags */
.founder-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.skill-tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    font-size: 0.8rem;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(222, 83, 5, 0.1);
    border-color: rgba(222, 83, 5, 0.3);
    color: var(--white);
    transform: translateY(-2px);
}

.skill-tag--primary {
    background: rgba(222, 83, 5, 0.2);
    border-color: rgba(222, 83, 5, 0.4);
    color: #de5305;
}

.skill-tag--primary:hover {
    background: rgba(222, 83, 5, 0.3);
}

/* Infografía */
.founder-infographic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    font-size: 0.85rem;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(222, 83, 5, 0.1);
    color: var(--white);
    transform: translateY(-2px);
}

.info-item svg {
    width: 16px;
    height: 16px;
    color: #de5305;
}

/* Bio */
.founder-bio {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Botón Leer más */
.founder-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #de5305;
    border-radius: 99px;
    color: #de5305;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.founder-readmore:hover {
    background: #de5305;
    color: white;
    transform: translateX(5px);
}

.founder-readmore svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.founder-readmore:hover svg {
    transform: translateX(4px);
}

.founder-readmore--primary {
    background: linear-gradient(135deg, #de5305 0%, #ff6b35 100%);
    border-color: #de5305;
    color: white;
    box-shadow: 0 4px 15px rgba(222, 83, 5, 0.3);
}

.founder-readmore--primary:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #de5305 100%);
    box-shadow: 0 6px 20px rgba(222, 83, 5, 0.4);
}

/* Netxipedia Social Link */
.social-link--netxipedia {
    background: rgba(222, 83, 5, 0.2);
    border-color: #de5305;
    color: #de5305;
}

.social-link--netxipedia:hover {
    background: #de5305;
    color: white;
}

/* Redes sociales */
.founder-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #de5305;
    border-color: #de5305;
    color: white;
    transform: translateY(-4px) scale(1.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link--featured {
    background: rgba(222, 83, 5, 0.2);
    border-color: #de5305;
    color: #de5305;
}

.social-link--featured:hover {
    background: #de5305;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .founder-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .founder-name {
        font-size: 1.5rem;
    }
    
    .founder-infographic {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   NETXIPEDIA MODAL - CON IFRAME
   ============================================ */
.netxipedia-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.netxipedia-modal.active {
    opacity: 1;
    visibility: visible;
}

.netxipedia-modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.netxipedia-modal .modal-content {
    position: relative;
    background: linear-gradient(145deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
    border: 1px solid rgba(222, 83, 5, 0.3);
    border-radius: 24px;
    width: 90%;
    max-width: 900px;
    height: 80vh;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(222, 83, 5, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.netxipedia-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

/* Header */
.netxipedia-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(222, 83, 5, 0.15) 0%, rgba(222, 83, 5, 0.05) 100%);
    border-bottom: 1px solid rgba(222, 83, 5, 0.2);
    position: relative;
    flex-shrink: 0;
}

.netxipedia-modal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #de5305, #ff6b35, #de5305, transparent);
}

/* Logo */
.modal-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-icon {
    width: 28px;
    height: 28px;
}

.modal-logo span {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

/* Close Button */
.netxipedia-modal .modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.netxipedia-modal .modal-close:hover {
    background: #de5305;
    border-color: #de5305;
    transform: rotate(90deg);
}

.netxipedia-modal .modal-close svg {
    width: 20px;
    height: 20px;
}

/* Body */
.netxipedia-modal .modal-body {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.netxipedia-modal .modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff;
}

/* Fallback */
.iframe-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0f0f1a 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-content {
    text-align: center;
    padding: 40px;
}

.fallback-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.fallback-content h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.fallback-content p {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 32px;
}

.fallback-content p span {
    color: #de5305;
    font-weight: 600;
}

/* CTA Button */
.modal-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #de5305 0%, #ff6b35 100%);
    border: none;
    border-radius: 99px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(222, 83, 5, 0.4);
}

.modal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(222, 83, 5, 0.5);
}

.modal-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.modal-cta-btn:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 768px) {
    .netxipedia-modal .modal-content {
        width: 95%;
        height: 85vh;
        margin: 20px;
    }
    
    .netxipedia-modal .modal-header {
        padding: 16px 20px;
    }
    
    .modal-logo span {
        font-size: 1rem;
    }
}

/* ============================================
   CONTACTO
   ============================================ */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-visual {
    text-align: center;
}

.planet-visual {
    max-width: 300px;
    margin: 0 auto 40px;
}

.planet-visual img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.contact-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.contact-subtitle {
    font-size: 1rem !important;
    color: var(--gray) !important;
}

.contact-brochure {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-brochure span {
    display: block;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
    font-style: italic;
}

/* ============================================
   FAQ - DISEÑO PROFESIONAL CON ANIMACIONES
   ============================================ */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(222, 83, 5, 0.5), transparent);
}

/* Header */
.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.faq-tag {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(222, 83, 5, 0.15), rgba(222, 83, 5, 0.05));
    border: 1px solid rgba(222, 83, 5, 0.3);
    border-radius: 50px;
    color: #de5305;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: faq-glow 2s ease-in-out infinite alternate;
}

@keyframes faq-glow {
    from { box-shadow: 0 0 10px rgba(222, 83, 5, 0.2); }
    to { box-shadow: 0 0 25px rgba(222, 83, 5, 0.4); }
}

.faq-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-title .highlight {
    background: linear-gradient(135deg, #de5305, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.faq-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #de5305, #ff6b35);
    border-radius: 2px;
}

.faq-subtitle {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Grid de 2 columnas */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Columnas */
.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Items */
.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-color: rgba(222, 83, 5, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(222, 83, 5, 0.1);
}

.faq-item.active {
    border-color: rgba(222, 83, 5, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(222, 83, 5, 0.15);
}

/* Pregunta */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #de5305;
}

.faq-question span {
    flex: 1;
}

/* Icono de pregunta */
.faq-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(222, 83, 5, 0.2), rgba(222, 83, 5, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon-wrapper {
    background: linear-gradient(135deg, rgba(222, 83, 5, 0.3), rgba(222, 83, 5, 0.15));
    transform: scale(1.05);
}

.faq-icon-q {
    width: 20px;
    height: 20px;
    color: #de5305;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon-q {
    transform: rotate(360deg);
    color: #ff6b35;
}

/* Flecha */
.faq-arrow {
    width: 22px;
    height: 22px;
    color: var(--gray-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #de5305;
}

/* Respuesta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer-content {
    padding: 0 24px 24px 76px;
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 0.95rem;
    animation: faq-fade-in 0.4s ease;
}

@keyframes faq-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content strong {
    color: var(--white);
}

/* Listas dentro de respuestas - SOLO listas normales, NO las especiales */
.faq-answer-content > ul:not(.faq-list-countries):not(.faq-services-list):not(.faq-payments):not(.faq-contact),
.faq-answer-content > ol {
    margin: 12px 0;
    padding-left: 20px;
}

.faq-answer-content > ul:not(.faq-list-countries):not(.faq-services-list):not(.faq-payments):not(.faq-contact) li,
.faq-answer-content > ol li {
    margin-bottom: 8px;
    position: relative;
}

/* Listas especiales de FAQ - SIN padding-left */
.faq-list-countries,
.faq-services-list,
.faq-payments,
.faq-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 12px 0;
}

/* Estilos base para items - serán sobrescritos por estilos específicos más abajo */
.faq-list-countries li,
.faq-payments li:not(.faq-payment-logo-item),
.faq-contact li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.faq-list-countries li:last-child,
.faq-payments li:last-child,
.faq-contact li:last-child {
    border-bottom: none;
}

/* Iconos SVG en listas */
.faq-flag-icon {
    width: 28px;
    height: 21px;
    flex-shrink: 0;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Wrapper para iconos de servicios */
.faq-service-icon-wrapper,
.faq-portfolio-icon-wrapper,
.faq-contact-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(222, 83, 5, 0.15), rgba(222, 83, 5, 0.05));
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(222, 83, 5, 0.2);
}

.faq-service-icon-wrapper svg,
.faq-portfolio-icon-wrapper svg,
.faq-contact-icon-wrapper svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
}

.faq-service-icon,
.faq-portfolio-icon,
.faq-contact-icon {
    width: 20px !important;
    height: 20px !important;
    display: block;
}

/* Iconos de pago */
.faq-payment-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(222, 83, 5, 0.15), rgba(222, 83, 5, 0.05));
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid rgba(222, 83, 5, 0.2);
}

.faq-payment-icon {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
    color: #de5305;
    stroke: #de5305;
    display: block;
}

/* Logos de pago horizontales */
.faq-payment-logo-item {
    padding: 12px 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-payment-logo {
    height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(1) contrast(1);
    transition: transform 0.3s ease;
}

.faq-payment-logo:hover {
    transform: scale(1.05);
}

.faq-payment-desc {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Badge "Preferido" para Wompi */
.faq-badge-preferred {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #de5305, #ff6b35);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    animation: faq-badge-pulse 2s ease-in-out infinite;
}

@keyframes faq-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(222, 83, 5, 0.4); }
    50% { box-shadow: 0 0 0 4px rgba(222, 83, 5, 0); }
}

/* Lista de portafolio específica */
.faq-portfolio-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 12px 0;
}

.faq-portfolio-list li {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-portfolio-list li:last-child {
    border-bottom: none;
}

.faq-portfolio-text {
    display: inline;
}

/* Lista de servicios específica */
.faq-services-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 12px 0;
}

.faq-services-list li {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-services-list li:last-child {
    border-bottom: none;
}

/* Especifico para items de portafolio y contacto */
.faq-answer-content .faq-portfolio-icon-wrapper,
.faq-answer-content .faq-contact-icon-wrapper,
.faq-answer-content .faq-service-icon-wrapper,
.faq-answer-content .faq-payment-icon-wrapper {
    margin: 0;
    flex-shrink: 0;
}

.faq-founders {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.faq-founder {
    padding: 12px 16px;
    background: rgba(222, 83, 5, 0.1);
    border-left: 3px solid #de5305;
    border-radius: 0 8px 8px 0;
}

/* Proceso numerado */
.faq-process {
    counter-reset: step;
    list-style: none;
    padding: 0 !important;
}

.faq-process li {
    padding: 12px 0 12px 48px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-process li:last-child {
    border-bottom: none;
}

.faq-process .step {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #de5305, #ff6b35);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Notas */
.faq-note {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(222, 83, 5, 0.1);
    border-radius: 8px;
    border-left: 3px solid #de5305;
}

/* CTA Section */
.faq-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Rating Card */
.faq-rating-card {
    text-align: center;
    padding: 32px 48px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    animation: faq-pulse 3s ease-in-out infinite;
}

@keyframes faq-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(222, 83, 5, 0.1); }
    50% { box-shadow: 0 0 40px rgba(222, 83, 5, 0.2); }
}

.faq-stars {
    font-size: 2rem;
    color: #de5305;
    margin-bottom: 12px;
    letter-spacing: 4px;
    animation: faq-stars-glow 2s ease-in-out infinite alternate;
}

@keyframes faq-stars-glow {
    from { text-shadow: 0 0 10px rgba(222, 83, 5, 0.5); }
    to { text-shadow: 0 0 25px rgba(222, 83, 5, 0.8), 0 0 40px rgba(222, 83, 5, 0.4); }
}

.faq-rating-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-rating-text strong {
    font-size: 1.5rem;
    color: var(--white);
}

.faq-rating-text span {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.faq-rating-desc {
    margin-top: 12px;
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Botones CTA */
.faq-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-btn-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, #de5305, #ff6b35);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(222, 83, 5, 0.3);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(222, 83, 5, 0.4);
}

.faq-btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(222, 83, 5, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.faq-btn-secondary svg {
    width: 20px;
    height: 20px;
}

.faq-btn-secondary:hover {
    background: rgba(222, 83, 5, 0.1);
    border-color: #de5305;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 64px;
    }
    
    .faq-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .faq-rating-card {
        padding: 24px 32px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .faq-btn-primary,
    .faq-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   UTILIDADES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(222, 83, 5, 0.1);
    border: 1px solid rgba(222, 83, 5, 0.3);
    border-radius: 99px;
    color: #de5305;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-top: 16px;
}

.text-primary {
    color: #de5305;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .founders-grid {
        gap: 32px;
    }
    
    .founder-card--main {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .about-hero__title {
        font-size: 2rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-year {
        position: absolute;
        left: 50px;
        top: -30px;
        font-size: 2rem;
        width: auto;
    }
    
    .timeline-content-card {
        width: 100%;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .coverage-countries {
        grid-template-columns: 1fr;
    }
    
    .map-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .timeline-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        padding: 32px 24px;
    }
    
    .counter {
        font-size: 2.5rem;
    }
}

/* ============================================
   CARRUSEL DE TESTIMONIOS - FAQ
   ============================================ */
.faq-testimonials-carousel {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-testimonials-track {
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.faq-testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
    pointer-events: none;
    padding: 30px 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
}

.faq-testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

.faq-testimonial-slide .faq-stars {
    font-size: 1.5rem;
    color: #de5305;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.faq-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-light);
    margin: 0 0 20px 0;
    font-style: italic;
}

.faq-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-testimonial-author strong {
    color: var(--white);
    font-size: 1rem;
}

.faq-testimonial-author span {
    color: var(--gray-light);
    font-size: 0.85rem;
}

/* Indicadores del carrusel */
.faq-testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 24px 0;
}

.faq-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-dot.active {
    background: #de5305;
    transform: scale(1.2);
}

.faq-dot:hover {
    background: rgba(222, 83, 5, 0.6);
}

/* Rating summary */
.faq-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-rating-big {
    font-size: 3rem;
    font-weight: 800;
    color: #de5305;
    line-height: 1;
}

.faq-rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.faq-stars-small {
    font-size: 1rem;
    color: #de5305;
    letter-spacing: 2px;
}

.faq-rating-info span {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE COMPLETO - MOBILE FIRST
   ============================================ */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    /* Hero */
    .about-hero {
        padding: 80px 0 40px;
    }
    
    .about-hero__title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .about-hero__subtitle {
        font-size: 1rem;
    }
    
    /* Timeline */
    .timeline-line {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-dot {
        left: 15px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-year {
        font-size: 1.25rem;
        left: 40px;
    }
    
    .timeline-content-card {
        padding: 16px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 16px;
        font-size: 0.9rem;
    }
    
    .faq-answer-content {
        padding: 0 16px 16px 56px;
    }
    
    .faq-icon-wrapper {
        width: 28px;
        height: 28px;
    }
    
    /* Carrusel testimonios */
    .faq-testimonial-slide {
        padding: 20px 16px;
    }
    
    .faq-testimonial-text {
        font-size: 0.95rem;
    }
    
    /* Botones CTA */
    .faq-cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 16px;
    }
    
    .faq-btn-primary,
    .faq-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    /* Logo Evolution - Carrusel horizontal en móvil */
    .logo-timeline {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0;
        margin-top: 40px;
        gap: 16px;
    }
    
    .logo-timeline::-webkit-scrollbar {
        display: none;
    }
    
    .logo-item {
        flex: 0 0 auto;
        width: 140px;
        scroll-snap-align: center;
    }
    
    .logo-timeline-line {
        display: none;
    }
    
    .logo-card {
        padding: 16px;
        min-height: 160px;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .logo-label {
        font-size: 0.8rem;
    }
}

/* Small Devices (phones, 376px to 575px) */
@media (min-width: 376px) and (max-width: 575px) {
    .container {
        padding: 0 16px;
    }
    
    .about-hero__title {
        font-size: 1.75rem;
    }
    
    .about-hero__subtitle {
        font-size: 1.1rem;
    }
    
    /* Timeline */
    .timeline-year {
        font-size: 1.25rem;
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        text-align: center;
        margin-bottom: 12px;
        display: inline-block;
        padding: 8px 16px;
        background: rgba(222, 83, 5, 0.2);
        border-radius: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        text-align: center;
    }
    
    .timeline-content-card {
        width: 100%;
        margin-top: 12px;
    }
    
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* FAQ Grid */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .faq-item {
        margin-bottom: 8px;
    }
    
    /* Logo Evolution - Carrusel horizontal */
    .logo-timeline {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0;
        gap: 20px;
    }
    
    .logo-timeline::-webkit-scrollbar {
        display: none;
    }
    
    .logo-item {
        flex: 0 0 auto;
        width: 160px;
        scroll-snap-align: center;
    }
    
    .logo-timeline-line {
        display: none;
    }
}

/* Medium Devices (tablets, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    .about-hero__title {
        font-size: 2rem;
    }
    
    /* Timeline */
    .timeline-content-card {
        padding: 20px;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Large Devices (tablets landscape, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding: 0 24px;
    }
    
    /* Hero */
    .about-hero {
        padding: 100px 0 60px;
    }
    
    /* Timeline */
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        font-size: 1.75rem;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-column {
        gap: 12px;
    }
}

/* Extra Large Devices (laptops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    /* FAQ Grid */
    .faq-grid {
        gap: 24px;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
}

/* XX-Large Devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Fix para dispositivos muy pequeños */
@media (max-width: 320px) {
    html {
        font-size: 14px;
    }
    
    .about-hero__title {
        font-size: 1.25rem;
    }
    
    .faq-question {
        font-size: 0.85rem;
        padding: 12px;
    }
    
    .faq-icon-wrapper {
        width: 24px;
        height: 24px;
    }
}

/* Fix para notch en iPhone X+ */
@supports (padding-top: env(safe-area-inset-top)) {
    .about-hero {
        padding-top: calc(80px + env(safe-area-inset-top));
    }
    
    .faq-section {
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }
}

/* Fix para teclado virtual en móviles */
@media (max-height: 500px) and (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
}

/* Orientación landscape en móviles */
@media (max-height: 500px) and (orientation: landscape) {
    .about-hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .about-hero__title {
        font-size: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Reducir motion para accesibilidad */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .faq-testimonial-slide {
        transition: none;
    }
}
