/* ===== Base Styles ===== */
:root {
    --primary: #00aa55;
    --primary-dark: #008844;
    --primary-light: #66d4a3;
    --secondary: #2c3e50;
    --secondary-light: #34495e;
    --accent: #f39c12;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --dark: #212529;
    --success: #28a745;
    --danger: #dc3545;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --font-primary: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.highlight {
    color: var(--primary);
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

#loader-circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: circle-animation 2s ease-in-out infinite;
    transform-origin: 50% 50%;
    stroke-linecap: round;
}

.car-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes circle-animation {
    0% {
        stroke-dashoffset: 283;
        transform: rotate(0deg);
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 283;
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 170, 85, 0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 170, 85, 0.2);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-video {
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.video-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: var(--transition);
}

.btn-video:hover {
    transform: translateY(-3px);
}

.btn-video:hover .video-icon {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* ===== Header ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

#header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow);
}

#header.scrolled .nav-link,
#header.scrolled .btn-outline {
    color: var(--dark);
}

#header.scrolled .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

#header.scrolled .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

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

.logo img {
    height: 40px;
    transition: var(--transition);
}

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

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

.nav-links li {
    margin-left: 25px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.mobile-menu {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

#header.scrolled .bar {
    background-color: var(--dark);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%), url('https://via.placeholder.com/1920x1080/333333/666666?text=Hero+Background') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 170, 85, 0.2) 0%, transparent 70%);
    opacity: 0.5;
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 30px;
}

.animated-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.animated-title::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 80px;
    height: 5px;
    background-color: var(--primary);
    border-radius: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-card {
    position: absolute;
    background-color: var(--white);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-strong);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: -30px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 100px;
    left: -40px;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: -20px;
    right: 30px;
    animation-delay: 1s;
}

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

.card-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 170, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 10px;
}

.card-text {
    font-weight: 600;
    color: var(--dark);
}

.hero-wave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
}

/* ===== Brands Section ===== */
.brands {
    padding: 40px 0;
    background-color: var(--white);
}

.brands-title {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.brands-slider {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.brand-logo {
    width: 200px;
    flex: 0 0 auto;
    padding: 0 30px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
}

/* ===== Benefícios Section ===== */
.beneficios {
    padding: 100px 0;
    background-color: var(--light);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.beneficio-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.beneficio-card:hover::before {
    height: 100%;
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 170, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.beneficio-card:hover .beneficio-icon {
    background-color: var(--primary);
}

.beneficio-icon i {
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition);
}

.beneficio-card:hover .beneficio-icon i {
    color: var(--white);
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.beneficio-card:hover h3 {
    color: var(--primary);
}

.beneficio-card p {
    color: var(--gray);
    font-size: 14pt !important;
}

.beneficios-cta {
    text-align: center;
}

/* ===== Como Funciona Section ===== */
.como-funciona {
    padding: 100px 0;
    background-color: var(--white);
}

.steps {
    max-width: 800px;
    margin: 0 auto 60px;
}

.step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 30px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: rgba(0, 170, 85, 0.2);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 10px rgba(0, 170, 85, 0.1);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.step-content p {
    color: var(--gray);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.video-thumbnail {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 0 15px rgba(0, 170, 85, 0.2);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary-dark);
}

/* ===== Economia Section ===== */
.economia {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%), url('https://via.placeholder.com/1920x1080/333333/666666?text=Economy+Background') no-repeat center center/cover;
    color: var(--white);
}

.economia-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

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

.economia-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.economia-text p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.economia-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.economia-stat {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.economia-chart {
    flex: 1;
    min-width: 300px;
}

.chart-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 300px;
    gap: 50px;
    margin-bottom: 20px;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.bar-label {
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
}

.bar-track {
    width: 100%;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px 10px 0 0;
    transition: height 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 0;
}

.highlight-fill {
    background-color: var(--primary);
}

.bar-value {
    margin-top: 15px;
    font-weight: 700;
}

.chart-caption {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== Calculadora Section ===== */
.calculadora {
    padding: 100px 0;
    background-color: var(--light);
}

.calculadora-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.calculadora-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.calculadora-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.calculadora-form {
    padding: 30px;
    border-bottom: 1px solid var(--gray-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-group select,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 170, 85, 0.1);
}

.form-group input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    background: var(--gray-light);
    border-radius: 5px;
    outline: none;
    margin-top: 10px;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.range-value {
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

.calculadora-result {
    padding: 30px;
    text-align: center;
    background-color: rgba(0, 170, 85, 0.05);
}

.result-header {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.result-percent {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.result-message {
    margin-bottom: 20px;
    color: var(--gray);
}

/* ===== Planos Section ===== */
.planos {
    padding: 100px 0;
    background-color: var(--white);
}

.planos-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.toggle-label {
    font-weight: 500;
    color: var(--gray);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--dark);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-light);
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: var(--transition);
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 30px;
}

.slider.round:before {
    border-radius: 50%;
}

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

.plano-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-light);
}

.plano-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-light);
}

.plano-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    z-index: 1;
}

.plano-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 var(--border-radius-lg) 0 var(--border-radius);
}

.plano-header {
    padding: 30px 30px 0px 30px;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.plano-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plano-tag {
    display: inline-block;
    background-color: rgba(0, 170, 85, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.plano-price {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.plano-price.monthly {
    display: none;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.price-period {
    color: var(--gray);
    margin-bottom: 10px;
}

.price-discount {
    display: inline-block;
    background-color: rgba(0, 170, 85, 0.1);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
}

.plano-features {
    padding: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary);
}

.feature-item.disabled {
    opacity: 0.6;
}

.feature-item.disabled i {
    color: var(--gray);
}

.plano-card .btn-primary,
.plano-card .btn-secondary {
    display: block;
    margin: 0 30px 30px;
}

.planos-info {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 170, 85, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
    flex-shrink: 0;
}

.planos-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== Comparativo Section ===== */
.comparativo {
    padding: 100px 0;
    background-color: var(--light);
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.comparison-table th {
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 600;
}

.comparison-table th.highlight-col {
    background-color: var(--primary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--secondary);
}

.comparison-table td.highlight-col {
    background-color: rgba(0, 170, 85, 0.05);
}

.comparison-table i {
    font-size: 1.2rem;
}

.fa-check-circle {
    color: var(--success);
}

.fa-times-circle {
    color: var(--danger);
}

.fa-question-circle {
    color: var(--gray);
}

/* ===== App Section ===== */
.app-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    overflow: hidden;
}

.app-section .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.app-content {
    flex: 1;
    min-width: 300px;
}

.app-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-description {
    margin-bottom: 40px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.app-features {
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    margin-bottom: 25px;
}

.app-feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    opacity: 0.8;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-download-btn {
    display: flex;
    align-items: center;
    background-color: var(--white);
    color: var(--dark);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.app-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.app-download-btn i {
    font-size: 2rem;
    margin-right: 15px;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

.big-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.app-showcase {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin-bottom: 30px;
}

.app-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: perspective(1000px) rotateY(10deg);
}

.app-screen.active {
    opacity: 1;
}

.app-screen-nav {
    display: flex;
    gap: 10px;
}

.screen-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.screen-dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* ===== Depoimentos Section ===== */
.depoimentos {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 40px;
    background-color: var(--light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-rating {
    margin-bottom: 20px;
    color: var(--accent);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 3rem;
    color: rgba(0, 170, 85, 0.2);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

.testimonial-cta {
    text-align: center;
}

.testimonial-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--gray);
}

/* ===== Parceiros Section ===== */
.parceiros {
    padding: 100px 0;
    background-color: var(--light);
}

.map-container {
    position: relative;
    margin-bottom: 60px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    color: var(--white);
}

.map-image {
    width: 100%;
    display: block;
}

.map-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    max-width: 500px;
}

.map-stat {
    text-align: center;
}

.map-overlay .btn-primary {
    align-self: flex-start;
}

.parceiros-logos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.parceiro-logo {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    height: 80px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.parceiro-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

/* ===== FAQ Section ===== */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

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

.faq-item {
    background-color: var(--light);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    margin-bottom: 20px;
    color: var(--gray);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%), url('https://via.placeholder.com/1920x1080/333333/666666?text=CTA+Background') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== Contato Section ===== */
.contato {
    padding: 100px 0;
    background-color: var(--light);
}

.contato-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contato-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 170, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 15px;
}

.info-header h3 {
    font-size: 1.2rem;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.contato-form {
    flex: 1;
    min-width: 300px;
}

.contato-form form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--gray);
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.form-response {
    display: none;
    text-align: center;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.form-response i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.form-response.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.form-response.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--secondary);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-about {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.7;
}

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

.social-link {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--primary);
}

.app-badges {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--secondary-light);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    opacity: 0.7;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--primary);
}

/* ===== Floating Contact ===== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
}

.contact-btn:hover {
    transform: scale(1.1);
}

.contact-btn.phone {
    background-color: #007bff;
}

.contact-btn.whatsapp {
    background-color: #25d366;
}

.contact-btn.back-to-top {
    background-color: var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.contact-btn.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.modal-header h3 {
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--danger);
}

.modal-body {
    padding: 20px;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe,
.video-responsive img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

.zoom-in {
    animation: zoomIn 1s ease forwards;
}

/* ===== Responsiveness ===== */
@media (max-width: 1200px) {
    .animated-title {
        font-size: 3rem;
    }
    
    .hero-image {
        max-width: 450px;
    }
    
    .app-content h2,
    .economia-text h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 88px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-link {
        color: var(--dark);
        font-size: 1.2rem;
    }
    
    .mobile-menu {
        display: block;
        margin-left: 20px;
    }
    
    .header-buttons {
        margin-left: auto;
    }
    
    .animated-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 50px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .economia-content,
    .app-section .container {
        flex-direction: column;
    }
    
    .economia-text,
    .app-content {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .economia-stats {
        justify-content: center;
    }
    
    .app-feature {
        text-align: left;
    }
    
        .app-download-buttons {
        justify-content: center;
    }
    
    .map-overlay {
        padding: 30px;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .map-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .map-overlay .btn-primary {
        align-self: center;
    }
}

@media (max-width: 768px) {
    /* Correção para o problema de horizontal scroll em dispositivos móveis */
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .animated-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-card {
        display: none; /* Ocultar em telas menores para evitar overflow */
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px;
    }
    
    .step::after {
        left: 50%;
        top: 60px;
        height: 2px;
        width: 100px;
        transform: translateX(-50%);
    }
    
    .chart-container {
        gap: 20px;
    }
    
    .chart-bar {
        width: 100px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .plano-card.popular {
        transform: scale(1);
    }
    
    .plano-card.popular:hover {
        transform: translateY(-15px);
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .parceiros-logos {
        justify-content: center;
    }
    
    .footer-columns {
        gap: 30px;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Correções específicas para evitar rolagem horizontal */
    .brands-slider, .testimonials-slider {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .brands-track, .testimonial-track {
        width: 100%;
    }
    
    .hero-wave svg {
        width: 100%;
        height: auto;
    }
    
    .comparison-table-wrapper {
        max-width: 100%;
    }
    
    .map-container {
        max-width: 100%;
    }
    
    .floating-contact {
        right: 15px;
    }
}

@media (max-width: 576px) {
    /* Correções adicionais para telas muito pequenas */

    .header-buttons .btn-outline {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-video {
        margin-top: 20px;
    }
    
    .economia-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .chart-container {
        flex-direction: column;
        height: auto;
        gap: 50px;
    }
    
    .chart-bar {
        width: 100%;
    }
    
    .bar-track {
        height: 200px;
    }
    
    .planos-toggle {
        flex-direction: column;
        gap: 10px;
    }
    
    .app-download-buttons {
        flex-direction: column;
    }
    
    .contato-form form {
        padding: 30px 20px;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Ajustes para evitar rolagem horizontal em telas muito pequenas */
    .container {
        padding: 0 15px;
    }
    
    .hero-content, .app-content, .economia-text, .contato-info, .contato-form {
        padding: 0;
    }
    
    .plano-card .btn-primary, .plano-card .btn-secondary {
        margin: 0 15px 20px;
    }
    
    .planos-info {
        padding: 15px;
    }
    
    .info-card, .beneficio-card, .testimonial-card {
        padding: 20px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    /* Garantir que elementos com posição absoluta não causem overflow */
    .hero-bg-animation, .hero-wave {
        width: 100%;
        overflow: hidden;
    }
    
    /* Ajuste para elementos que podem causar overflow em telas pequenas */
    .hero-stats, .economia-stats, .map-stats, .planos-toggle, .app-download-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-cta, .cta-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ===== Correções para evitar rolagem horizontal em todos os dispositivos ===== */
.hero, .brands, .beneficios, .como-funciona, .economia, .calculadora, 
.planos, .comparativo, .app-section, .depoimentos, .parceiros, .faq, 
.cta-section, .contato, .footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

svg {
    max-width: 100%;
}

.comparison-table {
    min-width: 600px; /* Garantir que a tabela seja scrollável em dispositivos pequenos */
}

.testimonial-track {
    width: 100%;
    flex-wrap: nowrap;
}

.testimonial-card {
    width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
}

.brands-track {
    flex-wrap: nowrap;
}

/* Ajustes para garantir que elementos absolutos não causem overflow */
.floating-card {
    max-width: 180px;
}

@media (max-width: 480px) {
    .floating-card {
        max-width: 150px;
        padding: 10px;
    }
    
    .card-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .card-text {
        font-size: 0.8rem;
    }
    
    .animated-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .beneficio-card, .step-content h3, .app-content h2, .economia-text h2, .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .plano-header h3 {
        font-size: 1.3rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .app-feature {
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-text h4 {
        font-size: 1.1rem;
    }
    
    .app-download-btn {
        width: 100%;
    }
    
    .app-download-btn i {
        font-size: 1.5rem;
    }
    
    .big-text {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .info-header h3 {
        font-size: 1.1rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
}

/* ===== Garantir que vídeos e iframes sejam responsivos ===== */
.video-responsive {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-responsive iframe,
.video-responsive video,
.video-responsive img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Melhorias de acessibilidade ===== */
:focus {
    outline: 3px solid rgba(0, 170, 85, 0.5);
    outline-offset: 2px;
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus {
    box-shadow: 0 0 0 3px rgba(0, 170, 85, 0.5);
}

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


/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    .hero-content {
        margin-top: 140px !important;
    }
}

/* Mobile Large (481px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    .hero-content {
        margin-top: 120px !important;
    }
}

/* Tablet Portrait (601px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .hero-content {
        margin-top: 120px !important;
    }
}

/* Tablet Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        margin-top: 140px !important;
    }
}

/* Desktop Small (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .hero-content {
        margin-top: 0px !important;
    }
}

/* Desktop Medium (1201px - 1440px) */
@media (min-width: 1201px) and (max-width: 1440px) {
    .hero-content {
        margin-top: 50px !important;
    }
}

/* Desktop Large (1441px - 1920px) */
@media (min-width: 1441px) and (max-width: 1920px) {
    .hero-content {
        margin-top: 0px !important;
    }
}

/* Desktop Extra Large (1921px+) */
@media (min-width: 1921px) {
    .hero-content {
        margin-top: 0px !important;
    }
}