/* CONTACTO FUNDESI */

.contacto-page {
    background-color: #ffffff;
}

/* ============================
   HERO
   ============================ */

.contacto-hero {
    min-height: 240px;
    padding: 3rem 1.5rem;
    background: linear-gradient(
        135deg,
        rgba(15, 138, 59, 0.16),
        rgba(227, 49, 45, 0.14)
    );
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.contacto-hero h1 {
    color: var(--fundesi-green-dark);
}

.contacto-hero p {
    max-width: 46rem;
    margin: 0 auto;
    color: #4b5563;
}

/* COLOR INSTITUCIONAL PARA TÍTULOS */
.text-fundesi {
    color: var(--fundesi-green-dark);
}

/* ============================
   SEPARADOR ROMBO TRICOLOR
   (mismo estilo que en otras páginas)
   ============================ */

.separator-tricolor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3.5rem 0;
}

/* Líneas laterales con degradado tricolor */
.separator-tricolor::before,
.separator-tricolor::after {
    content: "";
    flex: 1;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--fundesi-green),
        var(--fundesi-yellow),
        var(--fundesi-red)
    );
}

/* Contenedor del rombo */
.separator-tricolor span {
    position: relative;
    width: 40px;
    height: 40px;
}

/* Rombo externo */
.separator-tricolor span::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    border: 3px solid var(--fundesi-green-dark);
    border-radius: 10px;
    transform: rotate(45deg);
}

/* Rombo interno TRICOLOR */
.separator-tricolor span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 6px;
    background: linear-gradient(
        135deg,
        var(--fundesi-green),
        var(--fundesi-yellow),
        var(--fundesi-red)
    );
}

/* ============================
   FONDO SUAVE DETRÁS DE INFO + MAPA
   ============================ */

.contacto-section-bg {
    background-color: #f7f9f7; /* gris-verde muy suave */
    padding-bottom: 4rem;
}

/* ============================
   TARJETA INFORMACIÓN
   ============================ */

.contacto-card-info {
    position: relative;
    border-radius: 1.25rem;
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
    padding: 1.8rem;
    overflow: hidden;
}

/* Barra tricolor superior */
.contacto-card-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14%;
    right: 14%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--fundesi-green),
        var(--fundesi-yellow),
        var(--fundesi-red)
    );
}

/* ENLACES DE CONTACTO */
.contact-link {
    color: var(--fundesi-green-dark);
    font-weight: 600;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* ============================
   MARCO DEL MAPA
   ============================ */

.contacto-map-frame {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
}

.contacto-map-frame .ratio {
    border-radius: 1rem;
    overflow: hidden;
}

.contacto-map-frame iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 767.98px) {
    .separator-tricolor {
        margin: 2.5rem 0;
    }

    .contacto-card-info {
        padding: 1.6rem;
    }

    .contacto-map-frame {
        padding: 0.65rem;
    }
}
