/* Estilos comunes para todas las páginas */

body {
    font-family: system-ui;
}

.box {
    align-self: stretch;
    flex: 1;
}

.contain {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    overflow-x: hidden;
    min-height: 100%;
}

.image {
    height: 100px;
    object-fit: fill;
    width: 102px;
}

.image2 {
    height: 36px;
    /* margin-top: 32px; */
    object-fit: fill;
    width: 52px;
}

/* .row-view está definido en home.css para el navbar */

.row-view5 {
    align-items: center;
    display: flex;
    gap: 39px;
    margin-bottom: 85px;
}

.row-view6 {
    align-items: flex-start;
    display: flex;
    gap: 605px;
    margin-bottom: 37px;
    margin-left: 161px;
}

.row-view7 {
    align-items: flex-start;
    display: flex;
    margin-left: 161px;
}

.text {
    color: #000000;
    font-size: 24px;
    font-weight: bold;
}

.view5 {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 8px;
}

/* Prevenir overflow horizontal global */
html {
    overflow-x: hidden;
    overflow-y: scroll;
    max-width: 100%;
    height: 100%;
}

body {
    overflow-x: hidden;
    overflow-y: visible;
    max-width: 100%;
    height: auto;
    min-height: 100%;
}

* {
    box-sizing: border-box;
}

/* Asegurar que las imágenes no causen overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Elementos posicionados de forma absoluta */
[class*="absolute-"] {
    max-width: calc(100vw - 40px);
}

/* ===== ESTILOS GLOBALES DEL FOOTER ===== */
.footer-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: #000000;
    padding: 0;
    position: relative;
    overflow: visible;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0 120px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    overflow: visible;
}

.footer-left {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-header {
    width: 100%;
    background: #BB9C4B;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.footer-main-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.footer-app {
    flex-shrink: 0;
    min-width: 300px;
    margin-left: 40px;
    position: relative;
    overflow: visible;
}

.footer-app .footer-statue {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 100vh;
    object-fit: contain;
    transform: translateY(-8%);
    z-index: 10;
    pointer-events: none;
}

