/* 
 * SevenKar Site - CSS v3.0 FINAL
 * Data: 06/08/2025 - 17:05
 * CACHE BUSTER: FORÇAR ATUALIZAÇÃO
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reset global de links para evitar estilos padrão do navegador */
a {
    color: inherit;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* WhatsApp Banner */
.whatsapp-banner {
    background: linear-gradient(135deg, #000000 0%, #ff6b35 100%);
    color: white;
    padding: 0.8rem 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.whatsapp-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.whatsapp-banner i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.btn-whatsapp-banner {
    background: white;
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp-banner:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* Header */
.header {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
    background: transparent !important;
}

.logo span {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 400;
}

.logo-text {
    font-family: 'Rockwell', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ff6b35;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 190px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #000000 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #000000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-whatsapp-hero {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.btn-whatsapp-hero:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #000000;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #000000 0%, #ff6b35 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #000000 100%);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.hero-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.main-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    background: transparent !important;
}

.main-logo:hover {
    transform: scale(1.05);
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 300px;
}

.hero-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-card p {
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000 0%, #ff6b35 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.service-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #92400e;
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

/* REGRAS FORÇADAS PARA MARCAS - SEM BORDAS */
.brand-item,
.brands-grid .brand-item,
.brands-grid div,
.brands-grid > div,
div.brand-item,
.brand-item *,
.brands-grid .brand-item * {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 1rem 0.5rem !important;
    text-align: center !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    cursor: default !important;
    position: relative !important;
    font-size: 1.2rem !important;
    transition: color 0.3s ease !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none !important;
    display: block !important;
    margin: 0 !important;
    min-height: auto !important;
    max-width: none !important;
    width: auto !important;
    height: auto !important;
    /* FORÇAR REMOÇÃO DE QUALQUER ESTILO RESIDUAL */
    background-color: transparent !important;
    background-image: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* REGRAS ADICIONAIS FORÇADAS - CACHE BUSTER */

.brand-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.brand-item:hover {
    color: #ff6b35;
}

.brand-item:hover::after {
    width: 80%;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000 0%, #ff6b35 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.contact-phone-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-phone-button p {
    margin-bottom: 0;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 1rem;
    background: transparent !important;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #ff6b35;
}

.footer-section a {
    color: #d1d5db !important;
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
    text-decoration-color: transparent !important;
    -webkit-text-decoration-color: transparent !important;
    -moz-text-decoration-color: transparent !important;
    transition: color 0.3s ease;
    border: none !important;
    outline: none !important;
    background: none !important;
    background-color: transparent !important;
    -webkit-tap-highlight-color: transparent !important;
}

.footer-section a:hover {
    color: #ff6b35 !important;
    text-decoration: none !important;
}

.footer-section a:visited {
    color: #d1d5db !important;
    text-decoration: none !important;
}

.footer-section a:active {
    color: #ff6b35 !important;
    text-decoration: none !important;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000 0%, #ff6b35 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #000000 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-banner {
        padding: 0.6rem 0;
    }
    
    .whatsapp-banner .container {
        gap: 0.5rem;
    }
    
    .whatsapp-banner span {
        font-size: 0.9rem;
    }
    
    .btn-whatsapp-banner {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .header {
        top: 90px;
    }
    
    .hero {
        padding: 210px 0 60px;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
    font-size: 1.3rem;
    margin: 0.8rem 0;
    padding: 1rem 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #000000 0%, #ff6b35 100%);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    max-width: 300px;
}
    
    .nav-links a:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        background: rgba(255, 107, 53, 0.1);
    }
    
    .mobile-menu-btn span {
        width: 20px;
        height: 2px;
        background: #374151;
        transition: all 0.3s ease;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-phone-button {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-phone-button .btn {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-card {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 280px;
    }
    
    .main-logo {
        width: 150px;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    /* CORREÇÃO FORÇADA PARA LINKS DO FOOTER NO TABLET */
    .footer-section a,
    .footer-section a:link,
    .footer-section a:visited,
    .footer-section a:hover,
    .footer-section a:active,
    .footer-section a:focus {
        color: #d1d5db !important;
        text-decoration: none !important;
        -webkit-text-decoration: none !important;
        -moz-text-decoration: none !important;
        text-decoration-color: transparent !important;
        -webkit-text-decoration-color: transparent !important;
        -moz-text-decoration-color: transparent !important;
        background: none !important;
        background-color: transparent !important;
        border: none !important;
        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .footer-section a:hover {
        color: #ff6b35 !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-banner {
        padding: 0.5rem 0;
    }
    
    .whatsapp-banner span {
        font-size: 0.8rem;
    }
    
    .btn-whatsapp-banner {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .header {
        top: 85px;
    }
    
    .hero {
        padding: 195px 0 60px;
    }
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 0.2rem;
    }
    
    .logo-img {
        height: 30px;
        width: auto;
    }
    
    .logo span {
        font-size: 0.7rem;
        line-height: 1;
    }
    
    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.5px;
        color: #1f2937;
    }
    
    .hero {
        padding: 165px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content h2 {
        font-size: 1rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .service-image {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 15px;
        right: 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .contact-phone-button {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-phone-button .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    /* REGRAS MOBILE FORÇADAS - SEM BORDAS */
    .brand-item,
    .brands-grid .brand-item,
    .brands-grid div,
    .brands-grid > div,
    div.brand-item,
    .brands-grid .brand-item *,
    .brand-item * {
        padding: 1rem 0.5rem !important;
        font-size: 0.9rem !important;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        border: none !important;
        border-width: 0 !important;
        border-style: none !important;
        border-color: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        outline: none !important;
        margin: 0 !important;
        min-height: auto !important;
        max-width: none !important;
        width: auto !important;
        height: auto !important;
        /* FORÇAR REMOÇÃO DE QUALQUER ESTILO RESIDUAL */
        text-decoration: none !important;
        cursor: default !important;
        position: relative !important;
        transition: none !important;
        transform: none !important;
        /* REMOVER QUALQUER PSEUDO-ELEMENTO */
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }
    
    .main-logo {
        width: 120px;
    }
    
    /* REMOVER PSEUDO-ELEMENTOS DAS MARCAS NO MOBILE */
    .brand-item::before,
    .brand-item::after,
    .brands-grid .brand-item::before,
    .brands-grid .brand-item::after {
        display: none !important;
        content: none !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .logo-img {
        height: 30px;
    }
    
    /* CORREÇÃO FORÇADA PARA LINKS DO FOOTER NO MOBILE */
    .footer-section a,
    .footer-section a:link,
    .footer-section a:visited,
    .footer-section a:hover,
    .footer-section a:active,
    .footer-section a:focus {
        color: #d1d5db !important;
        text-decoration: none !important;
        -webkit-text-decoration: none !important;
        -moz-text-decoration: none !important;
        text-decoration-color: transparent !important;
        -webkit-text-decoration-color: transparent !important;
        -moz-text-decoration-color: transparent !important;
        background: none !important;
        background-color: transparent !important;
        border: none !important;
        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .footer-section a:hover {
        color: #ff6b35 !important;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.brand-item,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Foco visível para navegação por teclado */
.btn:focus,
.nav-links a:focus,
.whatsapp-float:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
} 