/* --- NOVO FOOTER --- */
.new-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 70px 20px 30px;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid #1f2937;
}
.new-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
    gap: 40px;
}
.new-footer-col h4 {
    color: #06b6d4; /* cyan */
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.new-footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}
.new-footer-desc {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.mascote-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}
.mascote-img {
    width: 70px;
}
.mascote-speech {
    background: #1f2937;
    border-radius: 8px;
    padding: 12px 15px;
    color: #d1d5db;
    font-size: 0.85rem;
    font-style: italic;
    position: relative;
    border: 1px solid #374151;
    font-weight: 600;
}
.mascote-speech::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #1f2937;
    border-left: 1px solid #374151;
    border-bottom: 1px solid #374151;
}
.new-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.new-footer-links li {
    margin-bottom: 15px;
}
.new-footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.new-footer-links a:hover {
    color: #06b6d4;
}
.new-footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 18px;
}
.new-footer-contact svg {
    width: 18px;
    height: 18px;
    color: #06b6d4;
    min-width: 18px;
}
.social-group {
    margin-bottom: 25px;
}
.social-group-title {
    color: #d1d5db;
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.social-icons-row {
    display: flex;
    gap: 10px;
}
.social-btn {
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.3s;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 900;
}
.social-btn:hover {
    background: #06b6d4;
    color: #fff;
    transform: translateY(-2px);
    border-color: #06b6d4;
}
.btn-app {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1f2937;
    color: #fff;
    padding: 14px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: 1px solid #374151;
    margin-top: 10px;
    width: 100%;
}
.btn-app:hover {
    background: #374151;
    border-color: #06b6d4;
    color: #ffffff !important;
}
.new-footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #1f2937;
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
    font-family: monospace;
}
@media (max-width: 992px) {
    .new-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .new-footer-container {
        grid-template-columns: 1fr;
    }
}
