/* ===================================
   FOOTER - ESTRUCTURA GENERAL
   =================================== */

/* SECCIÓN 1: Fondo con imagen (560px) */
.footer-section-1 {
    width: 1897px;
    height: 560px;
    background-color: #394049;
    position: relative;
    overflow: hidden;
}

/* Imagen de fondo con opacidad 0.6 */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background-color: #394049;
}

.footer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido del footer (se mostrará sobre la imagen) */
.footer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

/* Logo del footer */
.footer-logo {
    position: absolute;
    top: 130px;
    left: 109px;
    width: 306.72px;
    height: 306.72px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
}

/* Título del footer */
.footer-title {
    position: absolute;
    top: 192.08px;
    left: 441.36px;
    width: 421px;
    height: 32.4px;
    font-family: 'Bebas Neue Pro', sans-serif;
    font-weight: 700;
    font-stretch: semi-expanded;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    opacity: 1;
    margin: 0;
}

/* Descripción del footer */
.footer-description {
    position: absolute;
    top: 244.88px;
    left: 441.36px;
    width: 295px;
    height: 141.6px;
    font-family: 'Bebas Neue Pro', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #FFFFFF;
    opacity: 1;
    margin: 0;
}

/* SECCIÓN 2: Barra turquesa de copyright (140px) */
.footer-section-2 {
    width: 1897px;
    height: 140px;
    background-color: #00A499;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 20px;
}