/* =========================
   NEWSLETTER SECTION
========================= */
.newsletter-section {
    background: #ff7a00;
    padding: 60px 30px;
}

.newsletter-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-content h2 {
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: rgba(255,255,255,.9);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-form input {
    width: 320px;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    outline: none;
}

.newsletter-form button {
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #1e293b;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #0f172a;
    color: white;
    border-top: 4px solid #ff7a00;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 70px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-column h3,
.footer-column h4 {
    color: #ff7a00;
    margin-bottom: 20px;
}

.footer-column p {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    transition: .3s;
}

.footer-column a:hover {
    color: #ff7a00;
}

.footer-contact {
    margin-top: 20px;
}

/* =========================
   FOOTER BRANDS (Payments + Social)
========================= */
.footer-brands {
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-payments img {
    height: 32px;
    width: auto;
    opacity: .9;
    transition: opacity 0.3s ease;
}

.footer-payments img:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social img {
    width: 24px;
    height: 24px;
    opacity: .8;
    transition: all .3s ease;
}

.footer-social a:hover img {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   FOOTER TRUST & BOTTOM
========================= */
.footer-trust {
    padding: 18px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom {
    max-width: 1400px;
    margin: auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 10px;
}

/* =========================
   COOKIE BANNER
========================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #0f172a;
    color: #fff;
    padding: 18px 24px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    transition: all 0.3s ease;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    color: #cbd5e1;
}

.cookie-banner a {
    color: #ff7a00;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: #ff7a00;
    color: white;
}

.cookie-accept:hover {
    background: #e56e00;
}

.cookie-reject {
    background: #334155;
    color: white;
}

.cookie-reject:hover {
    background: #475569;
}

body.cookie-active .whatsapp-float {
    bottom: 120px;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: bottom 0.3s ease;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.speech-bubble {
    background: #fff;
    color: #0f172a;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    position: relative;
}

.bubble-tail {
    position: absolute;
    bottom: -6px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(45deg);
}

.new-message-badge {
    background: red;
    color: white;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 50px 30px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 400px;
    }

    .newsletter-form button {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .footer-brands {
        flex-direction: column;
        align-items: center;
        padding: 25px 30px;
        gap: 25px;
    }

    .footer-payments {
        justify-content: center;
        gap: 15px;
    }

    .footer-payments img {
        height: 28px;
    }

    .footer-social {
        justify-content: center;
        gap: 15px;
    }

    .footer-trust {
        gap: 15px;
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 20px 30px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }

    body.cookie-active .whatsapp-float {
        bottom: 170px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact {
        text-align: center;
    }

    .newsletter-section {
        padding: 40px 20px;
    }

    .newsletter-content h2 {
        font-size: 22px;
    }

    .newsletter-form input {
        max-width: 100%;
        width: 100%;
    }

    .newsletter-form button {
        max-width: 100%;
        width: 100%;
    }

    .footer-brands {
        padding: 20px;
        gap: 20px;
    }

    .footer-payments {
        gap: 12px;
    }

    .footer-payments img {
        height: 24px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social img {
        width: 22px;
        height: 22px;
    }

    .footer-trust {
        gap: 12px;
        font-size: 12px;
        padding: 15px 15px;
    }

    .footer-bottom {
        padding: 15px 20px;
        font-size: 12px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 14px 16px;
        gap: 12px;
    }

    .cookie-banner p {
        font-size: 13px;
    }

    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-actions button {
        padding: 8px 16px;
        font-size: 13px;
        flex: 1;
        min-width: 80px;
    }

    body.cookie-active .whatsapp-float {
        bottom: 140px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .speech-bubble {
        font-size: 12px;
        padding: 6px 12px;
    }

    .new-message-badge {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-container {
        padding: 30px 15px;
        gap: 25px;
    }

    .footer-brands {
        padding: 15px;
        gap: 15px;
    }

    .footer-payments {
        gap: 10px;
    }

    .footer-payments img {
        height: 20px;
    }

    .footer-social img {
        width: 20px;
        height: 20px;
    }

    .footer-trust {
        gap: 10px;
        font-size: 11px;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 12px 15px;
    }

    .newsletter-section {
        padding: 30px 15px;
    }

    .newsletter-content h2 {
        font-size: 20px;
    }

    .newsletter-content p {
        font-size: 14px;
    }

    .newsletter-form input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .newsletter-form button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .cookie-banner {
        padding: 12px 14px;
    }

    .cookie-banner p {
        font-size: 12px;
    }

    .cookie-actions button {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 60px;
    }
}