/* =====================================================
   CBMC Suite
   Hero Principal
===================================================== */

.cbmc-hero {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 60px 7%;

    background: #F5F0E6;

    overflow: hidden;

}

.cbmc-hero-left {

    flex: 1;

    min-width: 0;

}

.cbmc-hero-right {

    flex: 1;

    min-width: 0;

}
/* =====================================================
   CONTENIDO DEL HERO
===================================================== */

.cbmc-hero-copy {

    max-width: 620px;

}

.cbmc-hero-title {

    margin: 0 0 20px;

    color: #6B0015;

    font-size: 58px;

    line-height: 1.05;

    font-weight: 800;

}

.cbmc-hero-title span {

    display: block;

    margin-top: 8px;

    color: #D4AF37;

    font-style: italic;

    font-weight: 600;

}

.cbmc-hero-description {

    max-width: 560px;

    margin: 0 0 32px;

    color: #444444;

    font-size: 20px;

    line-height: 1.6;

}

.cbmc-hero-actions {

    display: flex;

    align-items: center;

    gap: 16px;

    flex-wrap: wrap;

}

.cbmc-hero-button {

    display: inline-block;

    padding: 14px 24px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}

.cbmc-hero-button-primary {

    background: #6B0015;

    color: #FFFFFF;

}

.cbmc-hero-button-primary:hover {

    background: #8A0A25;

    color: #FFFFFF;

    transform: translateY(-2px);

}

.cbmc-hero-button-secondary {

    background: transparent;

    color: #6B0015;

    border: 2px solid #6B0015;

}

.cbmc-hero-button-secondary:hover {

    background: #6B0015;

    color: #FFFFFF;

    transform: translateY(-2px);

}
/* =====================================================
   CONTENEDOR MULTIMEDIA DEL HERO
===================================================== */

.cbmc-hero-media {

    position: relative;

    width: 100%;

    min-height: 420px;

    border-radius: 24px;

    overflow: hidden;

    background: #FFFFFF;

    box-shadow: 0 18px 45px rgba(107, 0, 21, 0.15);

}

.cbmc-hero-media img {

    display: block;

    width: 100%;

    height: 420px;

    object-fit: cover;

    object-position: center;

}