/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.mb-none p:last-child{
    margin-bottom: 0 !important;
}
figure.elementor-image-box-img{
    font-size: 0;
}

@media screen and (max-width: 480px){
	.main-menu .sub-menu .menu-item .elementor-sub-item{
		padding: 12px 25px !important;
	}

	.main-stores {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
	}

	.main-stores > div:first-child {
		grid-column: span 2;
		width: 100% !important;
	}

	.main-stores > div:nth-child(2),
	.main-stores > div:nth-child(3) {
		grid-column: span 1;
	}
}
/* --- FOOTER UNIFICADO Y DINÁMICO --- */
.site-footer {
    background: #091d42; /* Navy Profundo */
    color: #ffffff;
    padding: 80px 0 0 0;
    margin-top: 80px;
    border-top: 4px solid #1150F1; /* Azul oficial */
    font-family: 'Inter', sans-serif;
    clear: both;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-description {
    color: #a5b4fc;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 25px 0;
    max-width: 320px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1); /* Logo blanco */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #1150F1;
    padding-left: 8px;
}

.footer-bottom {
    background: #051026;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-logo img { margin: 0 auto; }
    .footer-description { margin: 25px auto; }
    .footer-bottom-inner { flex-direction: column; gap: 15px; }
}