/* ============================================
   RESET E VARIÁVEIS
   ============================================ */

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

:root {
    --primary: #0B7B5C;
    --secondary: #FFC107;
    --accent: #00A86B;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --gray: #666666;
    --border: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

/* ============================================
   CONTAINER E LAYOUT
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.btn-cta {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .btn-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9f7 0%, #e8f5f2 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight {
    color: var(--secondary);
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--dark);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #055a45;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.time-info {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    object-fit: contain;
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* ============================================
   PAIN BLOCK SECTION
   ============================================ */

.pain-block {
    padding: 4rem 0;
    background-color: #fafafa;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

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

.pain-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.pain-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.solution-card {
    background: linear-gradient(135deg, #e8f5f2 0%, #d4ede8 100%);
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary);
    text-align: center;
}

.solution-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.solution-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
    padding: 4rem 0;
    background-color: #fafafa;
}

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

.benefit-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

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

/* ============================================
   APP DRIVERS SECTION
   ============================================ */

.app-drivers {
    padding: 4rem 0;
    background-color: var(--white);
}

.app-drivers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-drivers-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.app-drivers-text p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.app-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.app-benefits li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--dark);
}

.app-drivers-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    object-fit: contain;
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .app-drivers-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ELECTRIC CARS SECTION
   ============================================ */

.electric-cars {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e8f5f2 0%, #d4ede8 100%);
}

.electric-cars-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.electric-cars-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.electric-cars-text p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.electric-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.electric-benefits li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--dark);
}

.electric-cars-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    object-fit: contain;
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .electric-cars-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison {
    padding: 4rem 0;
    background-color: var(--white);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 0.75rem;
    overflow: hidden;
}

.comparison-table th {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

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

.comparison-table tr:nth-child(even) {
    background-color: #fafafa;
}

.comparison-table .check {
    color: var(--accent);
    font-weight: 600;
}

@media (max-width: 768px) {
    .comparison-table table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */

.social-proof {
    padding: 4rem 0;
    background-color: #fafafa;
}

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

.stat {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
}

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

.testimonial {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--secondary);
    box-shadow: var(--shadow);
}

.testimonial p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.price {
    margin-bottom: 1rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    color: var(--gray);
    font-size: 0.95rem;
}

.car-model {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--dark);
    font-size: 0.95rem;
}

.pricing-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #055a45 100%);
    color: var(--white);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-wrapper p {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: none;
    border-radius: 0.4rem;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--dark);
}

.form-group input::placeholder {
    color: #999;
}

.btn-submit {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 1rem;
    border-radius: 0.4rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 2rem;
    }
    
    .form-wrapper h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

.hero-text {
    animation: slideInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-cta {
        width: 100%;
    }
}
