/* SV Footer */
.sv-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

/* Linha Animada */
.sv-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--second), transparent);
    animation: moveLine 5s ease-in-out infinite;
}

@keyframes moveLine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.sv-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 16px 30px;
}

/* Copy Final */
.sv-footer__message {
    text-align: center;
    margin-bottom: 40px;
}

.sv-footer__message-title {
    color: #ffffff;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.sv-footer__message-text {
    color: #94a3b8;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.5;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Layout */
.sv-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 30px;
}

/* Brand */
.sv-footer__brand {
    flex: 1;
    min-width: 200px;
}

.sv-footer__logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Contact */
.sv-footer__contact {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sv-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sv-footer__contact-item:hover {
    color: #ffffff;
}

.sv-icon {
    font-size: 16px;
    opacity: 0.8;
}

/* Social */
.sv-footer__social {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.sv-social__link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: rgba(30, 41, 59, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sv-social__link:hover {
    color: #ffffff;
    background: var(--second);
    transform: translateY(-2px);
}

.sv-social__icon {
    display: block;
}

/* Legal */
.sv-footer__legal {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(8, 14, 26, 0.8);
    margin-top: 40px;
}

.sv-footer__legal-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.sv-footer__copyright {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}

.sv-footer__developer {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}

.sv-footer__dev-link {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sv-footer__dev-link:hover {
    color: #0ea5e9;
}

/* WhatsApp float */
.cw-whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    background: #22c55e;
    color: #041307;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 120ms ease, background 160ms ease;
}

.cw-whatsapp-float:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.cw-whatsapp-float__icon {
    font-size: 18px;
}

.cw-whatsapp-float__text {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .sv-footer__content {
        gap: 24px;
    }

    .sv-footer__contact {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sv-footer__inner {
        padding: 40px 16px 30px;
    }

    .sv-footer__message {
        margin-bottom: 30px;
    }

    .sv-footer__message-title {
        font-size: clamp(18px, 4vw, 24px);
    }

    .sv-footer__message-text {
        font-size: clamp(14px, 3vw, 16px);
    }

    .sv-footer__content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .sv-footer__brand {
        order: 1;
    }

    .sv-footer__contact {
        order: 2;
        flex-direction: column;
        gap: 16px;
        justify-content: center;
    }

    .sv-footer__social {
        order: 3;
        justify-content: center;
    }

    .sv-footer__legal-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px;
    }
}

@media (max-width: 640px) {
    .sv-footer__inner {
        padding: 32px 16px 24px;
    }

    .sv-footer__message {
        margin-bottom: 24px;
    }

    .sv-footer__content {
        gap: 20px;
    }

    .sv-footer__contact {
        gap: 14px;
    }

    .sv-footer__contact-item {
        font-size: 14px;
        padding: 8px 12px;
        border-radius: 6px;
    }

    .sv-footer__logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .sv-footer__inner {
        padding: 28px 12px 20px;
    }

    .sv-footer__message {
        margin-bottom: 20px;
    }

    .sv-footer__message-title {
        font-size: clamp(16px, 5vw, 20px);
        margin-bottom: 8px;
    }

    .sv-footer__message-text {
        font-size: clamp(13px, 4vw, 14px);
    }

    .sv-footer__content {
        gap: 18px;
    }

    .sv-footer__contact {
        gap: 12px;
    }

    .sv-footer__contact-item {
        font-size: 13px;
        padding: 6px 10px;
    }

    .sv-icon {
        font-size: 14px;
    }

    .sv-footer__logo img {
        height: 40px;
    }

    .sv-social__link {
        width: 36px;
        height: 36px;
    }

    .sv-social__icon {
        width: 16px;
        height: 16px;
    }

    .sv-footer__legal-inner {
        padding: 12px;
        gap: 6px;
    }

    .sv-footer__copyright,
    .sv-footer__developer {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .sv-footer__inner {
        padding: 24px 8px 16px;
    }

    .sv-footer__contact {
        gap: 10px;
    }

    .sv-footer__contact-item {
        font-size: 12px;
        padding: 5px 8px;
    }

    .sv-icon {
        font-size: 13px;
    }

    .sv-footer__logo img {
        height: 36px;
    }

    .sv-social__link {
        width: 32px;
        height: 32px;
        gap: 8px;
    }

    .sv-social__icon {
        width: 14px;
        height: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sv-footer__contact-link,
    .sv-social__link,
    .sv-footer__dev-link,
    .cw-whatsapp-float {
        transition: none;
    }
}

/* Adicione estes estilos ao arquivo footer.css existente */

/* Links Rápidos */
.sv-footer__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sv-footer__links-title,
.sv-footer__contact-title,
.sv-footer__social-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.sv-footer__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sv-footer__links-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.sv-footer__links-list li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Ajuste do grid do footer */
.sv-footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* Social Links Container */
.sv-footer__social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .sv-footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .sv-footer__links-list {
        align-items: center;
    }

    .sv-footer__social-links {
        justify-content: center;
    }
}