/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 8px;
    position: relative;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid #e0e0e0;
    color: #333;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #f5f5f5;
}

.btn-primary {
    background: linear-gradient(135deg, #0056b3 0%, #0077e6 100%);
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 86, 179, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0077e6 0%, #0056b3 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.25);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 86, 179, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Header */
header {
    background-color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.mobile-menu-toggle {
    position: absolute;
    right: 20px;
    top: -10px;
    z-index: 1001;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    left: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    max-width: 200px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    margin-right: 30px;
}

nav ul li {
    margin: 0 15px;
}

/* Ocultar o botão Acessar no menu desktop */
.nav-access-item {
    display: none;
}

nav ul li a {
    font-weight: 500;
    font-size: 15px;
    color: #666;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover, nav ul li a.active {
    color: #0056b3;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0056b3;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    padding: 160px 0 50px;
    background: linear-gradient(to right, #f9f9f9 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    color: #0056b3;
    position: relative;
}

.hero-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vehicles-showcase {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    height: 450px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vehicle-combined {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.combined-img {
    max-width: 500px;
    width: 500px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    transform: translateX(0);
    animation: float-subtle 6s ease-in-out infinite;
}

/* Estilos antigos removidos - não são mais necessários */
/* Estes estilos eram usados para as imagens separadas e não são mais necessários */

/* Estilos das imagens antigas removidos */

.vehicle-image-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vehicle-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    z-index: 3;
    position: relative;
    transform: scale(1);
}

.vehicle-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.vehicle-dot {
    padding: 5px 15px;
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.vehicle-dot.active {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    font-weight: 500;
}

.gps-indicator {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border-radius: 50%;
    z-index: 4;
}

.car-gps {
    top: 50%;
    left: 30%;
}

.moto-gps {
    top: 45%;
    right: 30%;
}

.gps-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0056b3;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.8;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromBottom {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Gráfico de desempenho */
.performance-chart {
    position: absolute;
    top: 5%;
    left: -20%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 12px;
    width: 220px;
    z-index: 4;
}

.chart-title {
    font-size: 12px;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    height: 90px;
    gap: 6px;
    margin-bottom: 20px;
}

.chart-bar {
    flex: 1;
    background-color: #4CAF50;
    border-radius: 3px 3px 0 0;
    position: relative;
    opacity: 0.9;
}

.chart-bar.active {
    opacity: 1;
}

.month {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    font-size: 11px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0056b3;
}

.circle-bg {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.15) 0%, rgba(0, 86, 179, 0.05) 70%, rgba(0, 86, 179, 0.02) 100%);
    bottom: -140px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    /* Adiciona uma borda sutil */
    border: 1px solid rgba(76, 175, 80, 0.1);
    /* Adiciona um efeito de sombra interna */
    box-shadow: inset 0 0 50px rgba(76, 175, 80, 0.1);
    /* Adiciona um efeito de linha circular */
    overflow: hidden;
    transition: all 0.3s ease;
}

.circle-bg::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    top: -8%;
    left: -8%;
    border: 2px dashed rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    animation: rotate 120s linear infinite;
}

.circle-bg::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    border: 1px dashed rgba(0, 86, 179, 0.15);
    border-radius: 50%;
    animation: rotate 180s linear infinite reverse;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Data Cards */
.data-card {
    position: absolute;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
    min-width: 180px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.km-card {
    bottom: 5%;
    left: -20%;
    animation: moveCardLeft 8s ease-in-out infinite;
}

.score-card {
    top: 15%;
    right: -20%;
    animation: moveCard 8s ease-in-out infinite 1s;
}

.alert-card {
    bottom: 10%;
    right: -15%;
    animation: moveCard 8s ease-in-out infinite 2s;
}

@keyframes moveCardLeft {
    0% {
        transform: translateX(-15%) translateY(0);
    }
    50% {
        transform: translateX(-15%) translateY(-10px);
    }
    100% {
        transform: translateX(-15%) translateY(0);
    }
}

@keyframes moveCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.driver-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.driver-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.data-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 18px;
}

.data-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.data-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-sublabel {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-status {
    font-size: 12px;
    color: #0056b3;
    font-weight: 500;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-value {
    font-size: 24px;
    font-weight: 700;
    color: #E7996E;
}

.data-value.green {
    color: #E7996E;
}

.data-value.amber {
    color: #E7996E;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .vehicles-showcase {
        height: 450px;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .vehicle-main, .vehicle-secondary {
        width: 80%;
        margin: 0;
    }
    
    .vehicle-img {
        max-width: 100%;
        height: auto;
    }
    
    .combined-img {
        max-width: 350px;
        width: 350px;
        margin: 0 auto;
    }
    
    .data-card {
        position: absolute;
        margin: 0;
        padding: 10px;
        min-width: 150px;
        max-width: 150px;
    }
    
    .km-card {
        bottom: 10%;
        left: 5%;
    }
    
    .score-card {
        top: 10%;
        right: 5%;
    }
    
    .alert-card {
        bottom: 10%;
        right: 5%;
    }
    
    .circle-bg {
        width: 450px;
        height: 450px;
        opacity: 0.7;
        bottom: -100px;
    }
    
    .data-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .data-value {
        font-size: 18px;
    }
    
    .data-label, .data-status, .data-sublabel {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }
    
    .logo-img {
        height: 50px;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        overflow-x: auto;
    }
    
    /* Ocultar todos os cards de dados em telas menores */
    .data-card {
        display: none;
    }
    
    /* Ajustar o showcase de veículos em telas menores */
    .vehicles-showcase {
        justify-content: center;
        padding-right: 0;
    }
    
    /* Ajustar a imagem dos veículos em telas menores */
    .combined-img {
        max-width: 350px;
        width: 350px;
        margin: 0 auto;
        transform: none;
        animation: none;
    }
    
    /* Ocultar o círculo de fundo em telas menores */
    .circle-bg {
        display: none;
    }
    
    nav ul {
        justify-content: center;
        margin-right: 0;
        padding: 5px 0;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .circle-bg {
        width: 350px;
        height: 350px;
        bottom: 50px;
    }
    
    .data-card {
        padding: 8px;
        min-width: 120px;
        max-width: 120px;
    }
    
    .km-card {
        bottom: 15%;
        left: 5%;
    }
    
    .score-card {
        top: 15%;
        right: 5%;
    }
    
    .alert-card {
        bottom: 15%;
        right: 5%;
    }
    
    .data-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
        min-width: 28px;
    }
    
    .data-value {
        font-size: 16px;
        line-height: 1;
    }
    
    .data-label, .data-status, .data-sublabel {
        font-size: 10px;
        line-height: 1.2;
        margin-bottom: 2px;
    }
    
    .data-info {
        width: calc(100% - 38px);
    }
}

@media (max-width: 768px) {
    /* Diminuir o container do header em telas menores */
    header {
        position: fixed;
    }
    
    header .container {
        padding: 8px 0;
    }
    
    /* Posicionar a logo à esquerda em telas menores */
    .logo {
        position: absolute;
        left: 15px;
        top: -15px
    }
    
    /* Aproximar a imagem dos veículos do botão Saiba como */
    .hero-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-image {
        margin-top: -30px;
    }
    
    .vehicles-showcase {
        margin-top: 0;
        height: auto;
    }
    
    /* Mostrar o botão Acessar apenas em telas menores */
    .nav-access-item {
        display: block !important;
    }
    
    .header-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    /* Ocultar o botão "Fale com especialista" em telas menores */
    .btn-specialist {
        display: none;
    }
    
    /* Mover o botão "Acessar" para dentro do nav em telas menores */
    .header-buttons .btn-outline {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        pointer-events: none;
    }
    
    /* Botão de acesso na navegação */
    .nav-access-button {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 4px;
        font-weight: 500;
        font-size: 14px;
        border: 1px solid #0056b3;
        color: #0056b3;
        background-color: transparent;
        margin-left: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .vehicle-main, .vehicle-secondary {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 130px 0 70px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-tag {
        font-size: 12px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .vehicle-main, .vehicle-secondary {
        width: 100%;
    }
    
    /* Ajustar a imagem dos veículos para telas muito pequenas */
    .combined-img {
        max-width: 220px;
        width: 220px;
        margin: 0 auto;
        /* Removido transform: none e animation: none para permitir a animação moderna */
    }
    
    /* Ocultar o círculo de fundo em telas muito pequenas */
    .circle-bg {
        display: none;
    }
    
    .data-card {
        min-width: 100px;
        max-width: 100px;
        padding: 6px;
    }
    
    .km-card {
        bottom: 20%;
        left: 5%;
    }
    
    .score-card {
        top: 20%;
        right: 5%;
    }
    
    .alert-card {
        bottom: 20%;
        right: 5%;
    }
    
    .data-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
        min-width: 24px;
    }
    
    .data-value {
        font-size: 14px;
        line-height: 1;
    }
    
    .data-label, .data-status, .data-sublabel {
        font-size: 8px;
        line-height: 1.1;
        margin-bottom: 1px;
    }
    
    .data-info {
        width: calc(100% - 30px);
    }
    
    .gps-indicator {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 375px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header-buttons {
        margin-top: 10px;
    }
    
    .header-buttons .btn {
        width: 100%;
        margin-bottom: 5px;
        text-align: center;
    }
    
    .data-card {
        min-width: 140px;
    }
}

/* About Section */
.about {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.about h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #0056b3;
    margin: 15px auto 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

/* Cards de Soluções */
.solution-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
}

.solution-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border-radius: 8px;
    padding: 15px 18px;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid #0056b3;
    display: flex;
    align-items: center;
}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.08);
}

.solution-icon {
    margin-right: 15px;
    flex-shrink: 0;
}

.solution-icon i {
    font-size: 20px;
    color: #0056b3;
    background-color: rgba(0, 86, 179, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.solution-content {
    flex: 1;
}

.solution-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.solution-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0;
}

.about-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.icon-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-10px);
}

.icon-item i {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 15px;
}

.icon-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Estilo para destacar a seção de benefícios quando clicada */
.highlight-section {
    animation: pulse-highlight 1.5s ease;
}

@keyframes pulse-highlight {
    0% { box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(0, 86, 179, 0.2); }
    100% { box-shadow: 0 0 0 0 rgba(0, 86, 179, 0); }
}

/* Seção de Funcionalidades */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0056b3;
    position: relative;
}

.feature-tabs {
    margin-top: 30px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #0056b3;
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: #0056b3;
}

.tab-btn.active:after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.feature-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-text h3 {
    font-size: 28px;
    color: #0056b3;
    margin-bottom: 20px;
}

.feature-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.feature-list {
    margin: 20px 0;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.highlight-text {
    font-weight: 600;
    color: #0056b3;
}

.benefits-list {
    margin: 20px 0;
}

.benefits-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #0056b3;
}

.feature-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.browser-mockup {
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

.browser-buttons {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.browser-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.browser-button.red {
    background-color: #ff5f57;
}

.browser-button.yellow {
    background-color: #ffbd2e;
}

.browser-button.green {
    background-color: #28c940;
}

.browser-address {
    flex: 1;
    background-color: #fff;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    color: #666;
}

.browser-actions {
    width: 30px;
}

.browser-content {
    padding: 0;
    position: relative;
}

.feature-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.feature-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    z-index: 10;
}

.badge-img {
    width: 100%;
    height: auto;
}

.methodology-badge {
    width: 100px;
    height: 100px;
    background-color: #0056b3;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
}

.methodology-badge i {
    font-size: 24px;
    margin-bottom: 5px;
    color: #E7996E;
}

.coming-soon {
    padding: 50px;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Estilos para a seção de Relatórios */
.report-btn {
    background-color: #6a0dad;
    border-color: #6a0dad;
    margin-top: 10px;
}

.report-btn:hover {
    background-color: #5a0a9d;
    border-color: #5a0a9d;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(106, 13, 173, 0.25);
}

.reports-content {
    position: relative;
    background-color: #f8f9ff;
}

.reports-illustration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 300px;
    z-index: 20;
    pointer-events: none;
}

.reports-person {
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: 21;
}

.reports-person-img {
    height: 200px;
    width: auto;
}

.reports-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 22;
}

.report-element {
    position: absolute;
    background-color: #6a0dad;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 3s infinite ease-in-out;
}

.report-element.chart {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.report-element.bar {
    width: 30px;
    height: 30px;
    top: 40%;
    right: 30%;
    animation-delay: 0.5s;
}

.report-element.pie {
    width: 50px;
    height: 50px;
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

.report-element.coin {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 20%;
    animation-delay: 1.5s;
    background-color: #E7996E;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .feature-content {
        flex-direction: column;
    }
    
    .feature-text, .feature-image {
        width: 100%;
    }
    
    .feature-badge {
        bottom: -10px;
        right: 0;
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Botão do WhatsApp flutuante */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

/* Benefícios */
.benefits {
    background-color: #f5f9ff;
    padding: 80px 0;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 36px;
    color: #0056b3;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Serviços */
.services {
    background-color: #f5f9ff;
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.services h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #0056b3;
    margin: 15px auto 0;
}

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

.service-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 25px;
    background-color: rgba(0, 86, 179, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
}

/* Estilos para os cards "Por que escolher a MR2?" na seção de serviços */
.why-choose-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.why-choose-list, 
.benefits-additional, 
.special-offer {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
}

.why-choose-list h3, 
.benefits-additional h3, 
.special-offer h3 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.why-choose-list h3 i, 
.benefits-additional h3 i, 
.special-offer h3 i {
    margin-right: 10px;
    color: #E7996E;
}

.why-choose-list ul, 
.benefits-additional ul, 
.special-offer ul {
    padding-left: 5px;
}

.why-choose-list ul li, 
.benefits-additional ul li, 
.special-offer ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: flex-start;
}

.why-choose-list ul li i, 
.benefits-additional ul li i, 
.special-offer ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #0056b3;
    margin-right: 10px;
}

.benefits-additional ul li i {
    color: #E7996E;
}

.special-offer {
    border-left: 4px solid #E7996E;
}

.special-offer h3 {
    color: #E7996E;
}

.special-offer ul li {
    font-weight: 500;
}

@media (max-width: 992px) {
    .why-choose-content {
        flex-direction: column;
    }
    
    .why-choose-list, 
    .benefits-additional, 
    .special-offer {
        min-width: 100%;
    }
}

.service-icon {
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 35px;
    color: #0056b3;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.contact h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #0056b3;
    margin: 15px auto 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 40px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.popup-container {
    background-color: white;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: popup-fade-in 0.3s ease-out;
    position: relative;
}

@keyframes popup-fade-in {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-header {
    background-color: #0056b3;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

.popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.popup-content {
    padding: 25px;
}

#saiba-como-form .form-group {
    margin-bottom: 20px;
}

#saiba-como-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

#saiba-como-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#saiba-como-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    background-color: white;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%230056b3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

#saiba-como-form input:focus,
#saiba-como-form select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    outline: none;
}

#saiba-como-form button {
    width: 80%;
    padding: 12px;
    margin-top: 10px;
    font-weight: 500;
    font-size: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.info-item {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 30px;
    color: #0056b3;
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: white;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.benefits h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #0056b3;
    margin: 15px auto 0;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item i {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

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

footer .footer-logo .footer-logo-img {
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: white;
}

.footer-logo p {
    color: #aaa;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #0056b3;
    margin-top: 10px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-contact p i {
    margin-right: 10px;
    color: #0056b3;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #aaa;
}

.footer-bottom p {
    font-size: 14px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .about-icon-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3:after,
    .footer-contact h3:after,
    .footer-social h3:after {
        margin: 10px auto 0;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .services-grid,
    .benefits-container {
        grid-template-columns: 1fr;
    }
}

/* Estilos para a mensagem de sucesso do formulário */
.success-message {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.success-message i {
    font-size: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Estilos para a seção de Rastreamento Veicular */
.tracking-content {
    position: relative;
    background-color: #f0f0f0;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e9e9e9;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #0056b3;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.map-pin:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    top: 6px;
    left: 6px;
}

.map-pin.pin1 {
    top: 50px;
    left: 100px;
    animation-delay: 0s;
}

.map-pin.pin2 {
    top: 150px;
    left: 200px;
    animation-delay: 0.5s;
}

.map-pin.pin3 {
    top: 100px;
    left: 300px;
    animation-delay: 1s;
}

.map-route {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-route:before {
    content: '';
    position: absolute;
    top: 60px;
    left: 110px;
    width: 200px;
    height: 2px;
    background-color: #0056b3;
    transform: rotate(15deg);
    transform-origin: left center;
    animation: drawLine 3s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(-45deg) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.7);
    }
    70% {
        transform: rotate(-45deg) scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 86, 179, 0);
    }
    100% {
        transform: rotate(-45deg) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
    }
}

@keyframes drawLine {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 200px;
        opacity: 1;
    }
    100% {
        width: 200px;
        opacity: 0.5;
    }
}
