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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

/* ===== TOP BAR ===== */
.top-bar {
    background: #9E0606;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar .phone {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar .phone svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}
.btn-area-cliente {
    background: #ffc107;
    color: #000;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
    border: none;
    cursor: pointer;
}
.btn-area-cliente:hover {
    background: #e0a800;
}
.btn-area-cliente svg {
    width: 14px;
    height: 14px;
    fill: #000;
}

/* ===== HEADER / NAV ===== */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.logo img {
    max-height: 60px;
    width: auto;
}
.nav-menu {
    display: flex;
    gap: 5px;
}
.nav-menu a {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: .3s;
    position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: #9E0606;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: #9E0606;
    transition: .3s;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}
.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: .3s;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}
.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-content {
    flex: 1;
}
.hero-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}
.hero-content h2 span {
    color: #9E0606;
}
.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}
.hero-image {
    flex: 1;
    text-align: center;
}
.hero-image img {
    max-width: 100%;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: .3s;
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}
.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* ===== COUNTERS ===== */
.counters-section {
    background: #1a1a2e;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.counters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100'%3E%3Cpath fill='%23f8f9fa' d='M500,98.9L0,6.1V0h1000v6.1L500,98.9z'/%3E%3C/svg%3E") no-repeat top;
    background-size: 100% 60px;
}
.counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.counter-item {
    color: #fff;
}
.counter-item .icon {
    margin-bottom: 15px;
}
.counter-item .icon svg {
    width: 40px;
    height: 40px;
    fill: #9E0606;
}
.counter-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.counter-number .prefix {
    font-size: 32px;
    color: #9E0606;
}
.counter-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    margin-top: 8px;
}

/* ===== SOBRE ===== */
.sobre {
    padding: 80px 0;
    background: #fff;
}
.sobre .container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.sobre-content {
    flex: 1;
}
.sobre-content .section-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
}
.sobre-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}
.sobre-content h2 span {
    color: #9E0606;
}
.sobre-image {
    flex: 1;
    text-align: center;
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.feature-item .f-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #9E0606;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.feature-item .f-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}
.feature-item .f-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ===== VANTAGENS ===== */
.vantagens {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    text-align: center;
}
.vantagens h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 40px;
}
.vantagens h2 span {
    color: #9E0606;
}
.vantagens-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.vantagens-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    padding: 12px 24px;
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
}
.vantagens-list li svg {
    width: 18px;
    height: 18px;
    fill: #25d366;
}

/* ===== PROTECAO ===== */
.protecao {
    padding: 80px 0;
    background: #f8f9fa;
}
.protecao .container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.protecao-content {
    flex: 1;
}
.protecao-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}
.protecao-image {
    flex: 1;
    text-align: center;
}

/* ===== APP ===== */
.app-section {
    background: #fff;
    padding: 80px 0;
}
.app-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.app-image {
    flex: 1;
    text-align: center;
}
.app-image img {
    max-height: 500px;
}
.app-content {
    flex: 1;
}
.app-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.app-content h2 .highlight {
    background: #9E0606;
    color: #fff;
    padding: 2px 12px;
    border-radius: 4px;
    display: inline-block;
}
.app-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}
.app-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333;
}
.app-features li svg {
    width: 18px;
    height: 18px;
    fill: #25d366;
}

/* ===== PLANOS ===== */
.planos-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    text-align: center;
}
.planos-section .section-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}
.planos-section .section-subtitle {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 40px;
}
.planos-section .frota-img {
    max-width: 400px;
    margin: 0 auto 50px;
}
.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.plano-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: .3s;
    position: relative;
}
.plano-card:hover {
    transform: translateY(-8px);
}
.plano-card.destaque {
    background: #9E0606;
    color: #fff;
}
.plano-card .plano-nome {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}
.plano-card .plano-nome strong {
    font-weight: 700;
}
.plano-card .plano-preco {
    margin-bottom: 25px;
}
.plano-card .plano-preco .simbolo {
    font-size: 20px;
}
.plano-card .plano-preco .inteiro {
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
}
.plano-card .plano-preco .centavos {
    font-size: 18px;
}
.plano-card .plano-preco .periodo {
    display: block;
    font-size: 12px;
    font-style: italic;
    opacity: .8;
    margin-top: 5px;
}
.plano-card .plano-beneficios {
    text-align: left;
    margin-bottom: 30px;
}
.plano-card .plano-beneficios li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.plano-card.destaque .plano-beneficios li {
    border-color: rgba(255,255,255,0.15);
}
.plano-card .plano-beneficios li::before {
    content: '✓';
    color: #25d366;
    font-weight: 700;
    font-size: 16px;
}
.plano-card.destaque .plano-beneficios li::before {
    color: #fff;
}

/* ===== CLIENTES ===== */
.clientes {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}
.clientes h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}
.clientes-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.clientes-grid img {
    max-height: 80px;
    opacity: .6;
    transition: .3s;
    cursor: pointer;
}
.clientes-grid img:hover {
    opacity: 1;
}

/* ===== MAPA ===== */
.map-section {
    padding: 0 0 60px;
    background: #f8f9fa;
    text-align: center;
}
.map-section iframe {
    width: 100%;
    max-width: 800px;
    height: 300px;
    border-radius: 8px;
    border: none;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.faq-section .container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.faq-info {
    flex: 1;
    color: #fff;
}
.faq-info .faq-tag {
    display: inline-block;
    background: #9E0606;
    color: #fff;
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}
.faq-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
}
.faq-info p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
}
.faq-info .faq-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
.faq-info .faq-contact .icon-box {
    width: 50px;
    height: 50px;
    background: #9E0606;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-info .faq-contact .icon-box svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}
.faq-info .faq-contact .contact-text h4 {
    font-size: 18px;
    font-weight: 600;
}
.faq-info .faq-contact .contact-text a {
    font-size: 20px;
    font-weight: 700;
    color: #25d366;
}
.faq-accordion {
    flex: 1;
}
.accordion-item {
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.accordion-btn {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
}
.accordion-btn .q-icon {
    width: 30px;
    height: 30px;
    background: #9E0606;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.accordion-btn .toggle-icon {
    margin-left: auto;
    font-size: 18px;
    font-weight: 300;
    transition: .3s;
}
.accordion-btn.active .toggle-icon {
    transform: rotate(45deg);
}
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 20px;
}
.accordion-panel.open {
    max-height: 200px;
    padding: 0 20px 18px;
}
.accordion-panel p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: #0d0d1a;
    color: #aaa;
    padding: 60px 0 30px;
}
.footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.footer .footer-logo img {
    max-width: 200px;
    margin-bottom: 15px;
}
.footer h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    color: #aaa;
    font-size: 14px;
    transition: .3s;
}
.footer ul li a:hover {
    color: #9E0606;
}
.footer .social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.footer .social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.footer .social a:hover {
    background: #9E0606;
}
.footer .social a svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}
.footer .footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 30px;
    font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: .3s;
    cursor: pointer;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero .container,
    .sobre .container,
    .protecao .container,
    .app-section .container,
    .faq-section .container {
        flex-direction: column;
    }
    .hero-content h2 { font-size: 32px; }
    .counters { grid-template-columns: repeat(2, 1fr); }
    .planos-grid { grid-template-columns: 1fr; max-width: 400px; }
    .app-features { grid-template-columns: 1fr; }
    .footer .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 100;
    }
    .nav-menu.open { display: flex; }
    .header { position: relative; }
    .top-bar .container { justify-content: center; gap: 10px; }
    .hero-content h2 { font-size: 26px; }
    .counter-number { font-size: 36px; }
    .vantagens-list li { padding: 10px 18px; font-size: 13px; }
    .footer .container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .counters { grid-template-columns: 1fr; }
}
