/* footer.css */

.footer {
    background: rgba(255,255,255,0.85);
    color: #111;
    padding: 40px 0 0 0;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 -2px 16px 0 rgba(0,0,0,0.08);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.footer-section {
    flex: 1;
    min-width: 300px;
    margin: 0 20px;
}
.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #EB3349 0%, #F45C43 51%, #EB3349 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}
.footer-section li i {
    margin-right: 10px;
    font-size: 1.1em;
    transition: 0.5s;
}
.footer-section li:hover i {
    background-position: right center;
}

/* Estilo específico para o link do WhatsApp */
.footer-section li a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-section li a:hover {
    color: #25D366;
    transform: scale(1.02);
}

.footer-section li a:hover i {
    color: #25D366;
    -webkit-text-fill-color: #25D366;
}

/* Footer social icon brand colors */
.footer-section li i.fab.fa-facebook,
.footer .footer-links a[title="Facebook"] i.fab.fa-facebook {
    color: #1877F2 !important;
}
.footer-section li i.fab.fa-instagram,
.footer .footer-links a[title="Instagram"] i.fab.fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}
.footer-section li i.fab.fa-whatsapp,
.footer .footer-links a[title="WhatsApp"] i.fab.fa-whatsapp {
    color: #25D366;
}
.footer-section li i.fab.fa-youtube,
.footer .footer-links a[title="YouTube"] i.fab.fa-youtube {
    color: #FF0000 !important;
}

/* Logo Weber - configuração base */
.footer-weber-logo {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
}

.footer-weber-logo img {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-weber-logo img:hover {
    opacity: 1;
}

/* Logo Weber desktop - visível no desktop, abaixo da logo preta */
.footer-weber-desktop {
    display: block;
    margin-top: 15px;
    padding-top: 0;
}

.footer-weber-desktop img {
    max-width: 300px;
}

/* Logo Weber mobile - escondida no desktop */
.footer-weber-mobile {
    display: none;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.footer-logo img {
    max-width: 180px;
    margin-bottom: 10px;
}
.footer-bottom {
    background: linear-gradient(to right, #EB3349 0%, #F45C43 51%, #EB3349 100%);
    background-size: 200% auto;
    color: #fff;
    text-align: center;
    padding: 12px 0 10px 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 30px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: 0.5s;
}

.footer-bottom:hover {
    background-position: right center;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    .footer-section, .footer-logo {
        margin: 20px 0;
        min-width: unset;
        text-align: center;
    }
    
    /* Trocar logos no mobile */
    .footer-weber-desktop {
        display: none;
    }
    
    .footer-weber-mobile {
        display: block;
    }
    
    .footer {
        padding: 30px 0 0 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 25px 0 0 0;
        font-size: 0.95rem;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-section {
        margin: 15px 0;
        min-width: 280px;
        max-width: 100%;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section li {
        font-size: 0.95rem;
        margin-bottom: 8px;
        justify-content: flex-start;
        align-items: flex-start;
        word-wrap: break-word;
    }
    
    .footer-logo img {
        max-width: 150px;
        margin-bottom: 8px;
    }
    
    .footer-weber-logo img {
        max-width: 250px;
    }
    
    .footer-bottom {
        font-size: 0.95rem;
        padding: 10px 0 8px 0;
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 20px 0 0 0;
        font-size: 0.9rem;
    }
    
    .footer-content {
        padding: 0 12px;
    }
    
    .footer-section {
        margin: 12px 0;
        min-width: 250px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-section li {
        font-size: 0.9rem;
        margin-bottom: 6px;
        flex-direction: row;
        text-align: left;
        line-height: 1.4;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .footer-section li i {
        margin-right: 8px;
        margin-bottom: 0;
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .footer-logo img {
        max-width: 120px;
        margin-bottom: 6px;
    }
    
    .footer-weber-logo img {
        max-width: 220px;
    }
    
    .footer-bottom {
        font-size: 0.9rem;
        padding: 8px 0 6px 0;
        margin-top: 20px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 15px 0 0 0;
        font-size: 0.85rem;
    }
    
    .footer-content {
        padding: 0 10px;
    }
    
    .footer-section {
        margin: 10px 0;
        min-width: 220px;
        max-width: 100%;
    }
    
    .footer-section h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .footer-section li {
        font-size: 0.85rem;
        margin-bottom: 5px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        align-items: flex-start;
    }
    
    .footer-logo img {
        max-width: 100px;
        margin-bottom: 5px;
    }
    
    .footer-weber-logo img {
        max-width: 200px;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding: 6px 0 5px 0;
        margin-top: 15px;
    }
}

/* Ajustes adicionais para dispositivos extremamente pequenos */
@media (max-width: 360px) {
    .footer-section {
        min-width: 180px;
    }
    
    .footer-section li {
        font-size: 0.8rem;
        text-align: left;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .footer-logo img {
        max-width: 80px;
    }
    
    .footer-weber-logo img {
        max-width: 180px;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        padding: 5px 0;
    }
}
