.cmvh-hero-secundario {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-top: var(--ch2-pt);
    padding-bottom: var(--ch2-pb);
    min-height: var(--ch2-min-h);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.ch2-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ch2-logo {
    width: var(--ch2-logo-w);
    height: var(--ch2-logo-h);
    max-width: 100%;
    margin-bottom: 24px;
    object-fit: contain;
    display: block;
}

.ch2-title {
    color: var(--ch2-title);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.ch2-text {
    color: var(--ch2-text);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.ch2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ch2-btn-bg);
    color: var(--ch2-btn-text);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.ch2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    filter: brightness(1.1);
    color: var(--ch2-btn-text);
}

@media (max-width: 768px) {
    .ch2-title { font-size: 2rem; }
    .ch2-text { font-size: 1rem; }
}
