/* =======================================================================
   DISEÑO NOSOTROS: BANNER RUTILIO
   ======================================================================= */

   .rm-partner-hero {
    background: #ffffff;
    padding: 0px 0;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.rm-circle-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rm-textured-circle {
    width: 445px;
    height: 445px;
    background-color: #2A3481;
    border-radius: 50%;
    position: absolute;
    z-index: 1;

    background-image: url('../images/logos/textura_rombo.png');
    background-size: 460px;
    background-repeat: repeat;

    overflow: hidden; 
}

.rm-character-fixed {
    position: absolute;
    z-index: 2;
    height: 130%;
    width: auto;
    bottom: -180px; 
    left: 50%;
    transform: translateX(-50%);
    object-fit: contain;
    pointer-events: none;
}

/* ================= TEXTOS ================= */

.rm-banner-h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #000;
    margin-bottom: 20px;
}

.rm-banner-blue {
    color: #2A3481;
}

.rm-banner-p {
    font-size: 16px;
    color: #333;
    max-width: 500px;
    margin-bottom: 30px;
}

/* ================= BOTONES ================= */

.rm-btn-reg {
    padding: 12px 30px;
    border: 2px solid #2A3481;
    color: #2A3481;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
}

.rm-btn-contact {
    background: linear-gradient(90deg, #2A3481 0%, #4756B8 50.48%, #4756B8 72.41%, #2A3481 100%);
    color: var(--color-neutral-white);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 
        0px 1px 3px rgba(0, 0, 0, 0.3),
        0px 4px 8px rgba(0, 0, 0, 0.15);
    align-self: flex-start;
}

/* ================= CONTENEDOR GENERAL ================= */

.rm-full-banner {
    background-color: #ffffff;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.rm-text-content .title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
}

/* ================= SECCION IDENTIDAD ================= */
.rm-identity-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.rm-identity-card {
    width: 100%;
    max-width: 1515px;
    height: auto; 
    min-height: 400px; 
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.rm-identity-title {
    width: 90%;
    max-width: 682px; 
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.2;
    text-align: center;
    color: #212854;
    margin-top: 60px;
    margin-bottom: 20px;
}

.rm-team-wrapper {
    width: 100%;
    max-width: 1412px;
    height: auto; 
    margin-top: auto; 
    line-height: 0;
}

.rm-team-img {
    width: 100%;
    height: auto;
    max-height: 525px; 
    object-fit: contain; 
    object-position: bottom; 
    display: block;
}

@media (max-width: 1400px) {
    .rm-identity-title {
        font-size: 48px;
    }
}