body {
    min-height: 100vh;
    height: 100vh; /* Forzar altura completa */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Evitar scroll en desktop */
}

.logo-header {
    background-color: #EAAC2C;
    width: 100%;
    flex-shrink: 0;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    gap: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.slogan-header-container {
    display: flex;
    align-items: center;
}

.slogan-header-img {
    height: 50px;
    width: auto;
}

.container.my-4 {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    max-width: 100% !important;
    padding: 0;
}

.row {
    flex: 1;
    margin: 0 !important;
}

.promo-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.promo-image {
    max-height: calc(100vh - 200px); /* Ajusta este valor según necesites */
    width: auto;
    object-fit: contain;
}
.whatsapp-button {
    margin-top: 10px;
    margin-bottom: 10px;
}

.custom-whatsapp-btn {
    background-color: #EAAC2C;
    color: #000;
    border: none;
    font-weight: 700;
    border-radius: 10px !important;
    padding: 8px 30px;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Averta';
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 0;
    transition: all 0.3s ease;
    animation: floating 10s ease-in-out infinite;
}

.custom-whatsapp-btn:hover {
    background-color: #000;
    color: #EEE1AC;
    border: 1px solid #EEE1AC;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
.footer-brand {
    background-color: #000;
    padding: 10px 0;
    width: 100%;
    margin-top: auto; /* Empuja el footer al final */
    flex-shrink: 0;
    color: #EEE1AC;
    position: relative; /* Asegura que esté sobre el contenido */
}
@media (max-width: 768px) {
    body {
        height: auto;
        min-height: 100vh;
        overflow-y: auto; /* Permitir scroll en móviles */
    }

    .promo-container {
        height: auto;
        padding:  0;
    }

    .promo-image {
        max-width: 100%;
        height: auto;
        max-height: none;
    }

    .custom-whatsapp-btn {
        font-size: 16px !important;
        padding: 6px 20px;
        margin-top: 20px;
    }
    
    .logo-img {
        height: 40px;
    }

    .slogan-header-img {
        height: 40px;
    
    
    
    }

    .header-container{
        justify-content: space-between;
        gap: 0;
    }
}