﻿/* Contenedor general de la sección */
.efr-wrapper {
    margin-top: 2rem;
    width: 100%;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden; /* Evita scroll horizontal si el sello sale un poco */
}

/* Sección Hero (columnas) */
.efr-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- Columna Izquierda --- */
.efr-col-left {
    flex: 1;
    max-width: 550px;
}

.efr-title-img {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
    display: block;
}

.efr-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.efr-banner-img {
    width: 100%;
    max-width: 450px;
    display: block;
}

/* --- Columna Derecha y Posicionamiento del Sello --- */
.efr-col-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.efr-people-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Estilos del Nuevo Sello Circular */

.efr-badge-link {
    position: absolute;
    width: 140px;
    bottom: 20px;
    right: 50px;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.2s ease;
}

/* Efecto opcional: El botón crece un poquito al pasar el mouse */
.efr-badge-link:hover {
    transform: scale(1.05);
}

/* La imagen dentro del enlace solo llena el espacio */
.efr-badge-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

/* --- Banner Inferior --- */
.efr-footer-banner {
    width: 100%;
    line-height: 0;
}

.efr-footer-img {
    width: 100%;
    height: auto;
}

/* --- Versión Móvil --- */
@media (max-width: 868px) {
    .efr-hero {
        flex-direction: column;
        text-align: center;
    }

    .efr-col-left, .efr-col-right {
        max-width: 100%;
        justify-content: center;
    }

    .efr-col-left {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .efr-badge {
        width: 100px;
        bottom: -10px;
        right: 0;
    }

    .efr-badge-link {
        width: 100px;
        bottom: -10px;
        right: 0;
    }
}
