


/* Footer y Pre-footer estilos generales */
.footer, .pre-footer 
{
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-container 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-flex
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon
{
    margin-right: 1rem;
}

.footer-text 
{
    max-width: 460px;
    text-align: left;
}
.footer-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pre-footer 
{
    text-align: center;
}

.pre-footer-heading
{
    font-weight: bold;
}

.margin-bottom
{
    margin-bottom: 15px;
}

.pre-footer-social a 
{
    color: #000;
    margin-right: 10px;
}

.mobile-footer 
{
    display: none;
}

.tablet-footer
 {
    display: none;
}

.desktop-footer
 {
    display: none;
}

.mobile-footer 
{
    display: block;
}

.mobile-pre-footer-section 
{
    margin-bottom: 5px;
}

.social-icons 
{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 15px;
}

.social-icons a
 {
    color: #333;
    margin: 0 10px;
    font-size: 18px;
}



/*=====================*/
/*=====================*/

/* Media queries para footer */

/*========================*/
/*========================*/

/**********************/
/* version movil      */
/**********************/

@media (max-width: 610px) 
{
    footer .container 
	{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Mostrar solo versión móvil del footer */
    .mobile-footer 
	{
        display: block;
    }
    
    .tablet-footer,
    .desktop-footer 
	{
        display: none;
    }
}

/**********************/
/* version tablet     */
/**********************/

@media (min-width: 612px) 
{
    /* Ocultar versión móvil y mostrar versión tablet */
    .mobile-footer 
	{
        display: none;
    }
    
    .tablet-footer 
	{
        display: block;
    }
    
    .desktop-footer 
	{
        display: none;
    }
    
    /* Layout para versión tablet */
    .pre-footer-content 
	{
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 20px;
    }
    
    .pre-footer-title-address 
	{
        grid-column: span 1;
        display: flex;
        flex-direction: column;
    }
    
    .pre-footer-contact 
	{
        grid-column: span 1;
        padding-top: 71px;
    }
    
    .pre-footer-about-account 
	{
        grid-column: span 1;
        padding-top: 71px;
    }
    
    .pre-footer-social-legal
	{
        grid-column: span 1;
        display: flex;
        flex-direction: column;
        margin-top: 16px;
    }
    
    .pre-footer-legal 
	{
        display: flex;
        flex-direction: column;
    }
}



/**********************/
/* especificas de tablet intermedias */
/**********************/


@media (max-width: 767.98px) 
{
    .footer-info {
        margin-bottom: 15px;
    }
    
    .registro-container 
	{
        padding: 0 15px;
    }
    
    .social-icons
	{
        text-align: center;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    .pre-footer-address 
	{
        display: none;
    }
    
    .pre-footer-contact 
	{
        display: block;
    }
    
    .pre-footer-legal 
	{
        display: block;
    }
    
    .mobile-pre-footer-section 
	{
        display: block;
        margin-bottom: 10px;
    }
    
    .pre-footer-about, 
    .pre-footer-contact, 
    .pre-footer-account, 
    .pre-footer-legal 
	{
        margin-bottom: 15px;
    }
}

/**********************/
/* version escritorio */
/**********************/
@media (min-width: 1100px) 
{
    /* Ocultar versiones móvil/tablet y mostrar versión desktop */
    .mobile-footer 
	{
        display: none;
    }
    
    .tablet-footer 
	{
        display: none;
    }
    
    .desktop-footer 
	{
        display: block;
    }
    
    /* Layout para versión desktop */
    .pre-footer-content 
	{
        display: grid;
        grid-template-columns: 1fr 1.5fr 1fr 1fr 1fr 1fr;
        gap: 20px;
    }
    
    .pre-footer-title
	{
        grid-column: span 1;
    }
    
    .pre-footer-address
	{
        grid-column: span 1;
    }
    
    .pre-footer-contact 
	{
        grid-column: span 1;
        padding-top: 0px;
    }
    
    .pre-footer-about-account 
	{
        grid-column: span 1;
        padding-top: 0px;
    }
    
    .pre-footer-legal 
	{
        grid-column: span 1;
        margin-top: 0px;
    }
    
    .pre-footer-social 
	{
        grid-column: span 1;
    }
}


