.cdmx-camino-section {
    position: relative;
    width: 100%;
    min-height: 475px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cdmx-camino-overlay {
    position: absolute;
    inset: 0;
    background: rgba(102, 51, 153, 0.72);
    z-index: 1;
}

.cdmx-camino-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    box-sizing: border-box;
}

.cdmx-camino-logo {
    flex-shrink: 0;
}

.cdmx-camino-logo img {
    width: 632px;
    height: auto;
    display: block;
}

.cdmx-camino-content {
    flex: 1;
}

.cdmx-camino-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.cdmx-camino-desc strong {
    font-weight: 700;
}

.cdmx-camino-btn-wrap {
    display: flex;
    justify-content: center;
}

.cdmx-camino-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #663399;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.65rem 2.5rem;
    border-radius: 0;
    border: 2px solid transparent;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.cdmx-camino-btn img {
    width: 32px;
    height: 32px;
    transition: filter 0.2s ease;
}

.cdmx-camino-btn:hover {
    background: #663399;
    color: #fff;
    border-color: #fff;
}

.cdmx-camino-btn:hover img {
    filter: brightness(0) invert(1);
}

.lang-es .cdmx-camino-desc {
    font-size: 1.5rem;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .cdmx-camino-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .cdmx-camino-logo img {
        width: 180px;
        margin: 0 auto;
    }

    .cdmx-camino-desc {
        font-size: 1.2rem;
    }
}
