/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.page-footer {
    padding-bottom:0!important;
}
.page-footer:after {
    content: '';
    height: 20px;
    display: block;
    width: 100%;
    background: #4A5C7A;
}
.page-wrapper .page-bottom {
    max-width: none !important;
    width: 100%!important;
    padding: 0 !important;
}


.custom-newsletter-section {
    background: transfarent;
    padding: 40px 0;
    margin-top: 60px;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: #4A5C7A;
    margin: 0 0 10px 0;
}

.newsletter-subtitle {
    font-size: 14px;
    color: #FF7E00;
    margin: 0;
    font-weight: 600;
}

.newsletter-form-wrapper {
    flex: 1;
    max-width: 500px;
}

.form.subscribe {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.newsletter-field {
    flex: 1;
    margin: 0;
}

#newsletter-email.newsletter-input {
    border: 2px solid #7C7C7C;
    border-radius: 10px;
    padding: 1rem 2rem;
    height: 48px;
    font-weight: 500;
}

.newsletter-input:focus {
    outline: none;
    border-color: #FF6B00;
}

.actions .newsletter-button {
    background: #4A5C7A;
    color: #FFFFFF;
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.actions .newsletter-button:hover {
    background: #1E40AF;
}

/* ============================================
   FOOTER PRINCIPAL
   ============================================ */

.footer-container {
    background: #FFFFFF;
    border-top: 1px solid #E0E0E0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: 1fr .8fr .8fr 1fr 1.3fr;
    gap: 40px;
}


/* ============================================
   COLUNA LOGO E REDES SOCIAIS
   ============================================ */

.footer-logo-wrapper {
    margin-bottom: 20px;
}
.footer-logo-link {
    display: block;
    border-bottom: 1px solid #515151;
}
.footer-logo {
    max-width: 227px;
    height: auto;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    color: #666666;
    border: 1px solid #E0E0E0;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    border-color: transparent;
}

.social-icon.facebook:hover {
    background: #1877F2;
    color: white;
    border-color: transparent;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: transparent;
}

/* ============================================
   COLUNAS DE LINKS
   ============================================ */

.footer-column-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

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

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

.footer-links a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* ============================================
   COLUNA DE CONFIANÇA
   ============================================ */

.footer-trust-section {
    margin-bottom: 30px;
}

.footer-trust-section:last-child {
    margin-bottom: 0;
}

.trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-badge {
    height: 40px;
    width: auto;
}

.payment-methods {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 38px;
}

/* ============================================
   FOOTER BOTTOM (COPYRIGHT)
   ============================================ */

.footer-bottom {
    background: #F5F5F5;
    padding: 20px;
    border-top: 1px solid #E0E0E0;
}

.footer-copyright-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    flex: 1;
}

.copyright-text p {
    margin: 0;
    font-size: 12px;
    color: #666666;
    line-height: 1.6;
}
.copyright-text p:first-child {
    font-weight: 600;
}
.cnpj-text {
    margin-top: 5px !important;
}

.magento-logo {
    height: 40px;
    width: auto;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form-wrapper {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top:0
    }
    .footer-logo-link {
        border-color:#BEBEBE
    }
    
    .footer-copyright-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .newsletter-form-wrapper {
        width: 100%;
    }
    #newsletter-email.newsletter-input {
        padding: .8rem 1.4rem;
        height: 45px;
    }
    .actions .newsletter-button {
        font-size: 14px;
        padding: 14px 16px;
    }
  
}

@media (max-width: 480px) {
    
    .newsletter-button {
        width: 100%;
    }
    
    .newsletter-title {
        font-size: 21px;
    }  
    .newsletter-subtitle {
        font-size: 12px;
    }
}