/* ===================================================
   SECCIÓN: GUÍA DE EXPORTACIÓN Y TIMELINE (COMEX)
   =================================================== */

/* Contenedor Principal aislado */
.guia-exportacion-section {
    background-color: var(--blanco);
    padding: 4rem 1.5rem;
    margin: 2rem 0 0;
    width: 100%;
    /* border-radius: 1rem; */
}

.guia-exportacion__inner {
    max-width: var(--width-container, 1140px);
    margin: 0 auto;
}

/* --- BANNER SU PYME AL MUNDO --- */
.guia-exportacion__banner {
    background: linear-gradient(135deg, var(--dsg-azul-oscuro, #212b55) 0%, #171e3d 100%);
    color: var(--blanco, #ffffff);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    box-shadow: 0 12px 28px rgba(33, 43, 85, 0.15);
    margin-bottom: 4rem;
    border-left: 4px solid var(--dsg-naranja, #e84127); /* Detalle lateral acento en naranja */
}

.guia-exportacion__banner-info h2 {
    margin: 0 0 0.5rem 0;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blanco, #ffffff);
}

.guia-exportacion__banner-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.5rem;
}

.guia-exportacion__btn-modal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background-color: var(--blanco, #ffffff);
    color: var(--dsg-azul-oscuro, #212b55);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.guia-exportacion__btn-modal:hover {
    background-color: #f8fafc;
    color: var(--dsg-naranja, #e84127); /* Acento suave en hover */
    transform: translateY(-2px);
}

/* --- ENCABEZADO TIMELINE --- */
.guia-exportacion__header {
    text-align: center;
    margin-bottom: 3rem;
}

.guia-exportacion__header h2 {
    color: var(--dsg-azul-oscuro, #212b55);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.guia-exportacion__header p {
    color: #64748b;
    font-size: 1.5rem;
    margin: 0;
}

/* --- TIMELINE DE 10 PASOS --- */
.guia-exportacion__timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Línea vertical conectora en azul claro con transparencia */
.guia-exportacion__timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 23px;
    width: 2px;
    background-color: rgba(63, 128, 190, 0.25);
}

.guia-exportacion__step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.guia-exportacion__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(63, 128, 190, 0.12);
    border: 1px solid rgba(63, 128, 190, 0.3);
    color: var(--dsg-azul-claro, #3f80be);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    font-size: 1.8rem;
    transition: all 0.25s ease;
}

.guia-exportacion__step:hover .guia-exportacion__icon {
    background-color: var(--dsg-azul-claro, #3f80be);
    color: var(--blanco, #ffffff);
    border-color: var(--dsg-azul-claro, #3f80be);
}

.guia-exportacion__body {
    flex-grow: 1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.guia-exportacion__step:last-child .guia-exportacion__body {
    border-bottom: none;
}

.guia-exportacion__body h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.6rem;
    color: var(--dsg-azul-oscuro, #212b55);
    font-weight: 700;
}

.guia-exportacion__body h3 span {
    color: var(--dsg-azul-claro, #3f80be);
    margin-right: 0.25rem;
    font-weight: 800;
}

.guia-exportacion__body p {
    margin: 0;
    color: #64748b;
    font-size: 1.4rem;
    line-height: 1.5;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .guia-exportacion__banner {
        padding: 1.8rem 1.2rem;
        text-align: center;
        justify-content: center;
    }

    .guia-exportacion__btn-modal {
        width: 100%;
    }

    .guia-exportacion__banner-info h2 {
        font-size: 1.8rem;
    }

    .guia-exportacion__banner-info p {
        font-size: 1.3rem;
    }
}