/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: url('assets/Colombia_Background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.macal,
.texto {
    text-align: center;
    position: relative;
}

.macal {
    margin-bottom: 33pt; /* Espaciado de 33 puntos entre título y texto */
}

.titulo,
.texto-img {
    width: 100%;
    height: auto;
}

/* Responsividad */
@media (max-width: 576px) {
    .titulo {
        width: 287px;
        height: 104px;
    }

    .texto-img {
        width: 288px;
        height: 65px;
        content: url('assets/texto_mobile.png');
    }

    .macal {
        margin-bottom: 20pt; /* Ajustar el espaciado proporcionalmente en mobile */
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .titulo, .texto-img {
        max-width: 60%;
        height: auto;
    }

    .macal {
        margin-bottom: 25pt; /* Ajustar el espaciado proporcionalmente */
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .titulo, .texto-img {
        max-width: 70%;
        height: auto;
    }

    .macal {
        margin-bottom: 28pt; /* Ajustar el espaciado proporcionalmente */
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .titulo, .texto-img {
        max-width: 80%;
        height: auto;
    }

    .macal {
        margin-bottom: 30pt; /* Ajustar el espaciado proporcionalmente */
    }
}

@media (min-width: 1201px) {
    .titulo, .texto-img {
        max-width: 100%;
        height: auto;
    }

    .macal {
        margin-bottom: 33pt; /* Espaciado completo */
    }
}

