/* ===== FOOTER NEGRO CON LOGO ===== */

.modern-footer {
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Tema negro */
.modern-footer.footer-black {
    background: #000000;
}

.modern-footer.footer-black::before {
    content: none;
}

/* Newsletter - franja superior oscura con acento amarillo */
.footer-black .footer-newsletter {
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.footer-black .newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.footer-black .newsletter-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.footer-black .newsletter-info p {
    font-size: 1rem;
    color: #999;
    margin: 0;
}

.footer-black .modern-newsletter-form {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}

.footer-black .newsletter-input-wrapper {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    transition: border-color 0.2s ease;
}

.footer-black .newsletter-input-wrapper:focus-within {
    border-color: rgba(255, 215, 0, 0.5);
}

.footer-black .newsletter-icon {
    padding: 0 12px 0 0;
    color: #666;
    font-size: 1rem;
}

.footer-black .modern-newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 8px;
    font-size: 0.95rem;
    color: #fff;
    outline: none;
}

.footer-black .modern-newsletter-input::placeholder {
    color: #666;
}

.footer-black .modern-newsletter-btn {
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-black .modern-newsletter-btn:hover {
    background: #ffde33;
    transform: translateX(4px);
}

/* Main Footer Content */
.footer-main {
    padding: 56px 0 32px;
    position: relative;
    z-index: 2;
}

.footer-black .footer-main {
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

/* Brand: logo + tagline */
.footer-brand {
    padding-right: 20px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 10px;
    line-height: 0;
}

.footer-logo-image {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    filter: brightness(1.05);
}

.footer-tagline {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 16px;
    font-style: italic;
}

.footer-brand-description {
    color: #999;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Compatibilidad con footer sin .footer-black (logo antiguo) */
.modern-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.8rem;
}

.logo-text h2 { font-size: 2rem; font-weight: 800; color: #FFD700; margin: 0; }
.logo-tagline { font-size: 0.9rem; color: #bbb; font-style: italic; }

/* Social Media */
.modern-social-media h4 {
    color: #FFD700;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-black .modern-social-media h4 {
    color: rgba(255, 215, 0, 0.95);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-sizing: border-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link.facebook { background: linear-gradient(135deg, #4267B2, #365899); }
.social-link.instagram { background: linear-gradient(135deg, #E4405F, #FD1D1D, #FCB045); }
.social-link.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.social-link.youtube { background: linear-gradient(135deg, #FF0000, #CC0000); }
.social-link.tiktok { background: linear-gradient(135deg, #000000, #333333); }
.social-link.google-business { background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335); }

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Columns */
.footer-column-title {
    color: #FFD700;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-black .footer-column-title {
    color: rgba(255, 215, 0, 0.95);
}

.footer-column-title i {
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    padding: 5px 0;
    border-radius: 5px;
}

.footer-black .footer-links a {
    color: #aaa;
}

.footer-links a i {
    font-size: 0.8rem;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-black .footer-links a:hover {
    color: #FFD700;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

/* Simple Contact Information */
.simple-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item-simple {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 8px 0;
    color: #999;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.contact-item-simple:hover {
    color: #FFD700;
}

.footer-black .contact-item-simple {
    color: #aaa;
}

.footer-black .contact-item-simple .contact-main {
    color: inherit;
}

.footer-black .contact-item-simple .contact-sub {
    color: #888;
}

.contact-item-simple i {
    color: #FFD700;
    font-size: 1rem;
    margin-top: 2px;
    min-width: 16px;
    flex-shrink: 0;
}

.contact-sub {
    color: #aaa;
    font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-black .footer-bottom {
    background: #000000;
    border-top-color: rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.footer-copyright {
    text-align: left;
}

.footer-copyright p {
    margin: 0 0 5px 0;
    color: #999;
    font-size: 0.9rem;
}

.footer-black .footer-copyright p {
    color: #888;
}

.powered-by {
    color: #666;
    font-size: 0.8rem;
}

.footer-black .powered-by {
    color: #555;
}

.powered-by i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.footer-legal a:hover {
    color: #FFD700;
}

.footer-black .footer-legal a {
    color: #888;
}

.footer-black .footer-legal a:hover {
    color: #FFD700;
}

.footer-payments {
    text-align: right;
}

.payments-text {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.footer-black .payments-text {
    color: #666;
}

.payment-methods {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.payment-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.payment-icon.visa { background: linear-gradient(135deg, #1A1F71, #2E3A87); }
.payment-icon.mastercard { background: linear-gradient(135deg, #EB001B, #FF5F00); }
.payment-icon.paypal { background: linear-gradient(135deg, #003087, #009CDE); }
.payment-icon.american-express { background: linear-gradient(135deg, #006FCF, #0077C8); }
.payment-icon.crypto { background: linear-gradient(135deg, #F7931A, #FFB347); }

.payment-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Button */
.modern-whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-whatsapp-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    color: #fff;
    text-decoration: none;
}

.modern-whatsapp-button:active {
    transform: translateY(-2px) scale(1.05);
}

/* WhatsApp Button Tooltip */
.modern-whatsapp-button {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
}

.modern-whatsapp-button::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 70px;
    right: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #1a1a1a;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
}

.modern-whatsapp-button::after {
    content: '';
    position: absolute;
    bottom: 60px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFD700;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.modern-whatsapp-button:hover::before,
.modern-whatsapp-button:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== MOBILE RESPONSIVE UTILITIES ===== */
.mobile-hidden {
    display: block;
}

.mobile-collapsible .mobile-content {
    display: block;
}

.mobile-toggle {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.mobile-chevron {
    transition: transform 0.3s ease;
    margin-left: auto;
}

.mobile-toggle.active .mobile-chevron {
    transform: rotate(180deg);
}

.contact-main {
    font-weight: 600;
    color: #FFD700;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    /* WhatsApp Button Tooltip Mobile */
    .modern-whatsapp-button::before {
        bottom: 80px;
        right: -10px;
        font-size: 0.8rem;
        padding: 10px 14px;
    }
    
    .modern-whatsapp-button::after {
        bottom: 70px;
        right: 10px;
    }
    
    /* Newsletter - Hidden on mobile */
    .footer-newsletter.mobile-hidden {
        display: none;
    }
    
    /* Main footer adjustments */
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Brand section - Alineado a la izquierda en móvil */
    .footer-brand {
        text-align: left;
        padding: 0;
    }
    
    .footer-logo-link {
        display: inline-block;
    }
    
    .footer-logo-image {
        height: 48px;
        margin: 0;
    }
    
    .footer-tagline {
        text-align: left;
    }
    
    .modern-footer-logo {
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    
    .footer-brand-description.mobile-hidden {
        display: none;
    }
    
    .footer-black .mobile-collapsible .mobile-content {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.08);
    }
    
    .footer-black .mobile-toggle {
        background: rgba(255, 255, 255, 0.06);
    }
    
    .footer-black .mobile-toggle:hover,
    .footer-black .mobile-toggle.active {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .modern-social-media h4.mobile-hidden {
        display: none;
    }
    
    .social-links {
        justify-content: flex-start;
        gap: 12px;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    /* Collapsible sections - All collapsed by default on mobile */
    .mobile-collapsible .mobile-content {
        display: none;
        margin-top: 15px;
        padding: 15px;
        background: rgba(255, 215, 0, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 215, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        padding: 0 15px;
        margin: 0;
    }
    
    .mobile-collapsible .mobile-content.active {
        display: block;
        max-height: 500px;
        padding: 15px;
        margin-top: 15px;
    }
    
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 10px;
        margin-bottom: 0;
        transition: all 0.3s ease;
    }
    
    .mobile-toggle:hover {
        background: rgba(255, 215, 0, 0.15);
    }
    
    .mobile-toggle.active {
        background: rgba(255, 215, 0, 0.2);
    }
    
    .footer-column-title {
        margin-bottom: 0;
        font-size: 1.1rem;
    }
    
    .footer-links {
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    /* Contact info - Essential only with collapsible container */
    .mobile-collapsible .simple-contact-info {
        margin: 0;
        padding: 0;
        gap: 0;
    }
    
    .contact-item-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px 0;
        margin: 0;
    }
    
    .contact-item-simple i {
        margin-top: 0;
        margin-right: 8px;
    }
    
    .contact-main {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .contact-sub.mobile-hidden {
        display: none;
    }
    
    /* Footer bottom - Simplified, alineado a la izquierda */
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: left;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .powered-by.mobile-hidden {
        display: none;
    }
    
    .footer-legal.mobile-hidden {
        display: none;
    }
    
    .footer-payments.mobile-hidden {
        display: none;
    }
    
    /* WhatsApp button */
    .modern-whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Further mobile optimizations */
    .footer-main {
        padding: 30px 0 15px;
    }
    
    .footer-grid {
        gap: 20px;
    }
    
    .modern-footer-logo {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .logo-text h2 {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        font-size: 0.8rem;
    }
    
    .mobile-toggle {
        padding: 12px;
        font-size: 1rem;
    }
    
    .footer-column-title {
        font-size: 1rem;
    }
    
    .mobile-collapsible .mobile-content {
        padding: 12px;
        margin-top: 10px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .contact-item-simple {
        padding: 8px 0;
    }
    
    .contact-main {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .modern-whatsapp-button {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1.3rem;
    }
}

/* ===== JAVASCRIPT FUNCTIONALITY FOR MOBILE ===== */
@media (max-width: 768px) {
    /* Ensure all mobile sections start collapsed */
    .mobile-collapsible .mobile-content {
        max-height: 0 !important;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        padding: 0 15px !important;
        margin: 0 !important;
        opacity: 0;
    }
    
    .mobile-collapsible .mobile-content.active {
        max-height: 500px !important;
        padding: 15px !important;
        margin-top: 15px !important;
        opacity: 1;
    }
    
    /* Ensure chevrons start pointing down */
    .mobile-chevron {
        transform: rotate(0deg) !important;
        transition: transform 0.3s ease;
    }
    
    .mobile-toggle.active .mobile-chevron {
        transform: rotate(180deg) !important;
    }
}

/* ========== FOOTER MINIMALISTA PROFESIONAL ========== */
.footer-minimal {
    background: #0a0a0a;
    color: #e5e5e5;
    font-size: 0.9375rem;
    position: relative;
}

.footer-minimal-inner {
    padding: 3rem 0 0;
}

.footer-minimal-main {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-minimal-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-minimal-logo {
    display: inline-block;
    line-height: 0;
}

.footer-minimal-logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    opacity: 0.95;
}

.footer-minimal-tagline {
    font-size: 0.8125rem;
    color: #737373;
    margin: 0;
    letter-spacing: 0.02em;
}

.footer-minimal-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-minimal-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-minimal-heading {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FFD700;
}

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

.footer-minimal-links li {
    margin: 0;
}

.footer-minimal-links a {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.footer-minimal-links a:hover {
    color: #fff;
}

.footer-minimal-contact p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-minimal-contact a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-minimal-contact a:hover {
    color: #fff;
}

.footer-minimal-address {
    color: #737373;
    font-size: 0.8125rem;
}

.footer-minimal-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0 2rem;
}

.footer-minimal-copy {
    margin: 0;
    font-size: 0.8125rem;
    color: #525252;
}

.footer-minimal-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-minimal-legal a {
    color: #525252;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.15s ease;
}

.footer-minimal-legal a:hover {
    color: #a3a3a3;
}

.footer-minimal-social {
    display: flex;
    gap: 1rem;
}

.footer-minimal-social a {
    color: #525252;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: color 0.15s ease, background 0.15s ease;
}

.footer-minimal-social a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.footer-minimal-social i {
    font-size: 1rem;
}

/* WhatsApp FAB - minimal */
.footer-whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 1000;
}

.footer-whatsapp-fab:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Footer minimal - responsive */
@media (max-width: 992px) {
    .footer-minimal-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-minimal-brand {
        align-items: flex-start;
        text-align: left;
    }
    .footer-minimal-nav {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
    .footer-minimal-contact {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-minimal-inner {
        padding: 2rem 0 0;
    }
    .footer-minimal-main {
        padding-bottom: 2rem;
        gap: 2rem;
    }
    .footer-minimal-nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    .footer-minimal-col {
        align-items: flex-start;
    }
    .footer-minimal .mobile-hidden {
        display: none !important;
    }
    .footer-minimal-links a,
    .footer-minimal-contact a {
        font-size: 0.875rem;
    }
    .footer-minimal-bottom {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        padding: 1rem 0 1.5rem;
    }
    .footer-minimal-legal {
        justify-content: flex-start;
    }
    .footer-minimal-social {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-minimal-logo-img {
        height: 38px;
    }
    .footer-whatsapp-fab {
        width: 48px;
        height: 48px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1.35rem;
    }
}
