/* Reset e Estilos Gerais */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #FF6B35; /* Laranja vibrante - BH Baterias */
    --secondary-color: #1a1a1a; /* Preto - BH Baterias */
    --accent-color: #27ae60; /* Verde WhatsApp */
    --text-color: #333;
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --orange-dark: #E55A2B; /* Laranja mais escuro para hover */
}

body {
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 90px;
}

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

/* Header */
header {
    background: var(--secondary-color);
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.logo-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo-text span {
    color: var(--primary-color);
}

.tagline {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 4px;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .tagline {
        display: none;
    }
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    width: 28px;
    height: 19px;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navegação */
.nav-menu {
    display: flex;
}

.nav-menu > ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu > ul > li > a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Esconder os icones de navegacao no desktop */
.nav-menu > ul > li > a > i:first-child {
    display: none;
}

.nav-menu > ul > li > a:hover {
    color: var(--primary-color);
}

.header-contact {
    display: flex;
}

.btn-whatsapp {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    white-space: nowrap;
    font-size: 0.95rem;
}

.btn-whatsapp:hover {
    background: #1f9b4e;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

/* Dropdowns */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    border-radius: 6px;
    border-top: 3px solid var(--primary-color);
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    width: 100%;
    text-align: left;
    border: none !important;
    padding: 0 !important;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px !important;
    color: var(--white) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 107, 53, 0.1) !important;
    color: var(--primary-color) !important;
}

@media (max-width: 1024px) {
    .dropdown-menu {
        display: none !important;
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        background-color: rgba(0, 0, 0, 0.25) !important;
        min-width: auto !important;
        padding: 5px 0 !important;
        border-radius: 0 !important;
        border-top: none !important;
        border-left: 3px solid var(--primary-color) !important;
    }
    .dropdown-menu li {
        text-align: left !important;
        border: none !important;
        padding: 0 !important;
    }
    .dropdown-menu li a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 12px 60px !important;
        font-size: 0.92rem !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.85) !important;
        text-decoration: none !important;
        gap: 10px !important;
    }
    .dropdown-menu li a:hover {
        background-color: rgba(255, 107, 53, 0.1) !important;
        color: var(--primary-color) !important;
    }
    .dropdown-menu li a i {
        font-size: 0.85rem !important;
        color: var(--primary-color) !important;
        width: 16px;
        text-align: center;
    }
}

/* Hero Section - Restaurado com 2 Botões e Fundo Original */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/wNL8F87zzaSF.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 4rem 1rem;
    border-bottom: 4px solid var(--primary-color);
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 900;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: #ddd;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    font-size: 1rem;
    transition: 0.3s;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: scale(1.05);
}

/* Tablet */
@media (min-width: 768px) {
    .hero {
        padding: 6rem 2rem;
    }
    .hero h2 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.3rem;
    }
}

/* Features */
.features {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--orange-dark) 100%);
    color: var(--white);
}

.features .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex: 1;
    min-width: 150px;
}

.feature-item i {
    font-size: 32px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
    color: var(--secondary-color);
    font-weight: 900;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

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

.service-card {
    background: var(--light-bg);
    padding: 40px 28px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #FF9B35);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.12), 0 5px 15px rgba(0, 0, 0, 0.06);
}

.service-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover i {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--secondary-color);
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Brands */
.brands {
    padding: 60px 0;
    background: var(--light-bg);
    text-align: center;
}

.brands-logos img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: var(--white);
}

.testimonials-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.testimonial-arrow {
    background: var(--white);
    border: 2px solid #e0e0e0;
    color: var(--secondary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    margin-bottom: 40px;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 300px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.client-name {
    display: block;
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.google-badge {
    text-align: center;
    background: #f8f9fa;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    border: 1px solid #eee;
}

.google-badge i {
    color: #4285F4;
    margin-right: 8px;
}

.google-badge span {
    font-weight: bold;
    font-size: 0.9rem;
}

/* Contact */
.contact {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
    background: var(--orange-dark);
}

.contact-map {
    width: 100%;
    max-width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative; /* Adicionado para posicionar o botão */
}

.btn-map-link {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-map-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-50%) translateY(-3px);
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    color: var(--white) !important;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    border: none;
    cursor: pointer;
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
    background: linear-gradient(135deg, #1da851 0%, #15a34a 100%);
}

.btn-whatsapp-large i {
    font-size: 1.3rem;
}

/* About / Sobre */
.about {
    padding: 70px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--secondary-color);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.highlight-item {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

.highlight-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-item > div > strong {
    font-size: 1.3rem;
    color: var(--secondary-color);
    line-height: 1.2;
    display: block;
}

.highlight-item > div > span {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.3;
}

/* FAQ */
.faq {
    padding: 70px 0;
    background: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item.open {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.12);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
    font-family: inherit;
    gap: 12px;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 4px 24px 20px;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Hero Badge (páginas internas) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.5);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* Page Intro */
.page-intro {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.page-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

/* Internal Links Section */
.internal-links {
    padding: 60px 0;
    background: var(--light-bg);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.link-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e8e8e8;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #FF9B35);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.link-card:hover::before {
    transform: scaleX(1);
}

.link-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.12);
}

.link-card i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.link-card:hover i {
    background: rgba(255, 107, 53, 0.18);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.link-card h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.link-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

.link-card-cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Contact CTA Box */
.contact-cta {
    padding: 60px 0;
    background: var(--secondary-color);
}

.cta-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 20px;
    padding: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cta-icon {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
    min-width: 220px;
}

.cta-text h2 {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-text p {
    color: #bbb;
    font-size: 0.95rem;
}

.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Nav Active */
.nav-active {
    color: var(--primary-color) !important;
}

/* Footer Developer Credit */
.footer-dev {
    margin-top: 8px;
    font-size: 0.78rem;
    color: #888;
}

.footer-dev a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-dev a:hover {
    color: var(--primary-color);
}

/* Responsivo páginas internas */
@media (max-width: 1024px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .cta-btns {
        justify-content: center;
    }

    .cta-icon {
        font-size: 2.2rem;
    }
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    border-top: 3px solid var(--primary-color);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Action Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: var(--white);
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    z-index: 2000;
    grid-template-columns: 1fr 1fr;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-weight: 900;
    font-size: 0.9rem;
    gap: 8px;
}

.call-btn {
    background: var(--primary-color);
}

.whats-btn {
    background: #25d366;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade Mobile */
@media (max-width: 1024px) {
    .feature-item {
        min-width: 100px;
        flex: 0 1 calc(50% - 10px);
    }

    .features .container {
        gap: 10px;
    }
    .logo-img {
        width: 60px;
        height: 60px;
    }

    .logo-text h1 {
        font-size: 22px;
    }

    .tagline {
        font-size: 0.75rem;
    }

    header {
        height: 70px;
        padding: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        width: 100%;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu > ul > li {
        padding: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        width: 100%;
    }

    .nav-menu > ul > li > a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 18px 30px !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        color: var(--white) !important;
        width: 100%;
        gap: 12px !important;
    }

    /* Mostrar icones no mobile */
    .nav-menu > ul > li > a > i:first-child {
        display: inline-block !important;
        font-size: 1.1rem !important;
        color: var(--primary-color) !important;
        width: 22px;
        text-align: center;
    }

    /* Alinhar setinha no canto direito */
    .nav-menu > ul > li > a i.fa-chevron-down {
        display: inline-block !important;
        margin-left: auto !important;
        font-size: 0.8rem !important;
        opacity: 0.7;
        transition: transform 0.3s;
    }

    .dropdown:hover .dropdown-toggle i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .header-contact {
        display: none;
    }

    body {
        padding-top: 70px;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: auto;
        background-attachment: scroll;
    }

    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

    .whatsapp-float {
        display: none; /* Esconde o botão flutuante para usar a barra fixa */
    }

    .mobile-action-bar {
        display: grid !important;
    }

    footer {
        padding-bottom: 95px; /* Espaço para não cobrir o footer */
    }

    .testimonial-card {
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
    }

    .testimonial-arrow {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-question {
        font-size: 0.92rem;
        padding: 16px 18px;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.9rem;
    }
}
