/* ========================================
   CLICKPESQUISA - Modern CSS 2025
   Cores da marca: #0B6AAA, #105C8F, #4FC3F7
   Design: Glassmorphism + Fluid Gradients
   ======================================== */

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

:root {
    --primary-blue: #0B6AAA;
    --primary-dark: #105C8F;
    --primary-light: #4FC3F7;
    --accent-blue: #2A7DE1;
    --success-green: #00D26A;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   HEADER - Glassmorphism Effect + Shine Animation
   ======================================== */
header {
    background: linear-gradient(135deg,
        rgba(11, 106, 170, 0.95) 0%,
        rgba(16, 92, 143, 0.95) 50%,
        rgba(11, 106, 170, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(11, 106, 170, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Efeito de brilho espelhado destacado */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(79, 195, 247, 0.2) 20%,
        rgba(79, 195, 247, 0.5) 40%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(79, 195, 247, 0.5) 60%,
        rgba(79, 195, 247, 0.2) 80%,
        transparent 100%
    );
    animation: headerShine 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes headerShine {
    0% {
        left: -150%;
    }
    50% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--success-green));
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;  /* Mantém proporção da logo */
    display: block;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* ========================================
   HERO SECTION - Modern Gradient
   ======================================== */
.hero {
    background: linear-gradient(135deg, 
        #e8eaf0 0%, 
        #f5f6f8 25%,
        #ffffff 50%,
        #f0f2f5 75%,
        #e8eaf0 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 130px 50px 80px;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(11, 106, 170, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(79, 195, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    animation: fadeInLeft 1s ease;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.15) 0%,
        rgba(76, 175, 80, 0.12) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(76, 175, 80, 0.6);
    color: #2e7d32;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.25);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.2) 0%,
        rgba(76, 175, 80, 0.15) 100%
    );
}

.badge::before {
    content: "✓";
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

h1 {
    font-size: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: none;
    letter-spacing: -1px;
}

.hero-description {
    color: #475569;
    font-size: 18px;
    line-height: 1.6;
    text-shadow: none;
}

.hero-right {
    flex: 0 0 450px;
    animation: fadeInRight 1s ease;
}

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

/* ========================================
   SEARCH CARD - Glassmorphism Premium
   ======================================== */
.search-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(11, 106, 170, 0.25),
                0 10px 30px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(11, 106, 170, 0.3),
                0 15px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

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

.input-group label {
    display: block;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.plate-input {
    width: 100%;
    padding: 20px 22px;
    font-size: 22px;
    border: 2px solid #e8e9eb;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    font-weight: 700;
    color: #2c3e50;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.plate-input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.15),
                inset 0 2px 4px rgba(0, 0, 0, 0.06);
    transform: scale(1.01);
}

.plate-input.error {
    border-color: #ff4444;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.plate-input.valid {
    border-color: var(--success-green);
    box-shadow: 0 0 0 4px rgba(0, 210, 106, 0.15);
}

.plate-input::placeholder {
    color: #cbd5e0;
    letter-spacing: 5px;
    font-weight: 600;
}

.error-message {
    color: #ff4444;
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
    display: none;
    font-weight: 600;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.error-message.show {
    display: block;
}

/* ========================================
   SEARCH BUTTON - Modern Gradient
   ======================================== */
.search-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #b0b0b0 0%, #999 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.search-button:hover:not(:disabled)::before {
    left: 100%;
}

.search-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.search-button:disabled {
    background: linear-gradient(135deg, #d0d0d0 0%, #e0e0e0 100%);
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.search-button:not(:disabled) {
    background: linear-gradient(135deg, 
        var(--success-green) 0%, 
        #00b85a 50%,
        var(--success-green) 100%
    );
    background-size: 200% 200%;
    animation: buttonGradient 3s ease infinite;
}

@keyframes buttonGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.search-button:not(:disabled):hover {
    background: linear-gradient(135deg, #00b85a 0%, #009648 100%);
    animation: none;
}

.search-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#recaptchaContainer {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* ========================================
   CAR ILLUSTRATION - Mobile
   ======================================== */
.car-info-section {
    padding: 60px 20px;
    background: #f0f2f5;
}

.car-info-desktop {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.car-info-desktop img {
    border-radius: 16px;
}

.car-info-mobile {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
}

.car-info-mobile img {
    border-radius: 16px;
}

.car-illustration {
    background: linear-gradient(135deg, 
        rgba(26, 61, 107, 0.95) 0%, 
        rgba(42, 77, 123, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.car-illustration::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.car-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.info-labels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.info-label {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.info-label:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.info-label.large {
    grid-column: span 3;
    background: linear-gradient(135deg, 
        var(--success-green) 0%,
        #00b85a 100%
    );
    color: white;
    font-size: 15px;
}

/* ========================================
   REVIEWS SECTION - Modern Cards
   ======================================== */
.reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 50px;
    min-height: auto;
    position: relative;
}

.reviews-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.reviews-title {
    font-size: 36px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.reviews-subtitle {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 50px;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(11, 106, 170, 0.1);
}

.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-light), var(--success-green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(11, 106, 170, 0.2);
}

.review-card:hover::before {
    opacity: 1;
}

.review-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.review-card:hover .review-icon {
    transform: scale(1.1) rotate(5deg);
}

.review-info {
    flex: 1;
    text-align: left;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.review-plate {
    font-weight: 800;
    font-size: 16px;
    color: #1e293b;
}

.review-model {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.rating-number {
    font-weight: 800;
    color: #1e293b;
}

.rating-stars {
    font-size: 16px;
}

.review-author {
    color: #64748b;
    font-weight: 500;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 50px;
    min-height: auto;
}

.how-it-works-content {
    max-width: 1400px;
    margin: 0 auto;
}

.how-it-works-title {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.how-it-works-title .underlined {
    text-decoration: underline;
    text-decoration-color: var(--primary-light);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.how-it-works-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.step-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(11, 106, 170, 0.1);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(11, 106, 170, 0.2);
    border-color: var(--primary-light);
}

.step-number {
    font-size: 20px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.video-container {
    position: sticky;
    top: 120px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(11, 106, 170, 0.25);
    border: 3px solid var(--primary-light);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.advantages {
    background: linear-gradient(135deg, 
        #f8f9fa 0%, 
        #e9ecef 50%,
        #f8f9fa 100%
    );
    padding: 100px 50px;
    min-height: auto;
}

.advantages-content {
    max-width: 1400px;
    margin: 0 auto;
}

.advantages-title {
    font-size: 48px;
    color: var(--primary-blue);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.text-blue {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantages-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantages-grid .advantage-card:nth-child(7),
.advantages-grid .advantage-card:nth-child(8) {
    grid-column: span 1;
}

.advantages-grid .advantage-card:nth-child(7) {
    margin-left: auto;
    margin-right: 12.5px;
}

.advantages-grid .advantage-card:nth-child(8) {
    margin-left: 12.5px;
    margin-right: auto;
}

.advantage-card {
    background: linear-gradient(135deg, 
        var(--primary-blue) 0%, 
        var(--primary-dark) 100%
    );
    border-radius: 18px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(11, 106, 170, 0.25);
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(79, 195, 247, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(11, 106, 170, 0.35);
    border-color: var(--primary-light);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.25);
}

.advantage-icon svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.advantage-title {
    font-size: 20px;
    color: white;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.advantage-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 1;
}

.advantage-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.advantage-content h3 {
    font-size: 20px;
    color: white;
    font-weight: 700;
    margin: 0;
}

.advantage-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 50px;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.pricing-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 48px;
    color: var(--primary-blue);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.pricing-subtitle {
    font-size: 16px;
    color: #64748b;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-carousel {
    overflow: visible; /* Permite zoom dos cards sem corte */
    position: relative;
    padding: 15px 0; /* Espaço para animação */
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.3s ease;
    overflow: visible; /* Permite que o zoom não seja cortado */
    padding: 10px; /* Espaço para o card crescer */
}

.pricing-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px 30px;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 15px 40px rgba(11, 106, 170, 0.15);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(11, 106, 170, 0.25);
    border-color: var(--primary-light);
}

.pricing-badge {
    font-size: 14px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.badge-gold {
    background: linear-gradient(135deg, #F4B223 0%, #D4941A 100%);
}

.badge-silver {
    background: linear-gradient(135deg, #A8A8A8 0%, #8B8B8B 100%);
}

.badge-blue {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-blue) 100%);
}

.pricing-price {
    margin-bottom: 20px;
    text-align: center;
}

.price-old {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.price-old span {
    text-decoration: line-through;
    color: #e74c3c;
    font-weight: 600;
}

.price-current {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #475569;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.btn-primary {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-green {
    background: linear-gradient(135deg, var(--success-green) 0%, #00b85a 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 210, 106, 0.3);
}

.btn-green:hover {
    box-shadow: 0 10px 30px rgba(0, 210, 106, 0.4);
}

.btn-blue {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-blue) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.3);
}

.btn-blue:hover {
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.4);
}

/* ========================================
   PREMIUM PLAN - Single Plan Design
   ======================================== */
.pricing-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.pricing-card-premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4),
                0 0 0 1px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: premiumGlow 3s ease-in-out infinite;
}

@keyframes premiumGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4),
                    0 0 0 1px rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow: 0 25px 70px rgba(255, 215, 0, 0.6),
                    0 0 0 2px rgba(255, 215, 0, 0.2);
    }
}

.pricing-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: premiumShine 4s linear infinite;
}

@keyframes premiumShine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.premium-badge {
    background: linear-gradient(135deg, #1a3d6b 0%, #2a4d7b 100%);
    color: #FFD700;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(26, 61, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-current-premium {
    font-size: 64px;
    font-weight: 900;
    color: #1a3d6b;
    text-align: center;
    margin: 20px 0 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-description-premium {
    font-size: 18px;
    color: #1a3d6b;
    line-height: 1.6;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 600;
}

.pricing-features-premium {
    list-style: none;
    margin-bottom: 35px;
    padding: 0;
    columns: 2;
    column-gap: 30px;
}

.pricing-features-premium li {
    padding: 12px 0;
    color: #1a3d6b;
    font-size: 16px;
    font-weight: 600;
    break-inside: avoid;
    line-height: 1.6;
}

.feature-note {
    display: block;
    font-size: 12px;
    color: #2a4d7b;
    font-weight: 400;
    margin-top: 4px;
    font-style: italic;
}

.btn-premium {
    width: 100%;
    padding: 24px 20px;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(135deg, #1a3d6b 0%, #2a4d7b 100%);
    color: #FFD700;
    box-shadow: 0 10px 30px rgba(26, 61, 107, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 61, 107, 0.7);
}

.btn-modelo-premium {
    width: 100%;
    padding: 20px;
    border: 3px solid #1a3d6b;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    color: #1a3d6b;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
}

.btn-modelo-premium:hover {
    background: #1a3d6b;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 61, 107, 0.4);
}

.carousel-indicators {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.indicator.active {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-blue));
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.4);
}

.carousel-arrow {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-blue));
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.carousel-arrow:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.5);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow-left {
    order: 1;
}

.carousel-arrow-right {
    order: 3;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 50px;
    min-height: auto;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.testimonials-subtitle {
    text-align: center;
    margin-bottom: 60px;
    font-size: 17px;
    color: #64748b;
}

.testimonials-link {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s;
    font-weight: 600;
}

.testimonials-link:hover {
    color: var(--primary-light);
}

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

.testimonials-wrapper {
    flex: 1;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 45px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(11, 106, 170, 0.12);
    border: 1px solid rgba(11, 106, 170, 0.1);
}

.testimonial-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 8px 20px rgba(11, 106, 170, 0.2);
    border: 3px solid #fff;
    object-fit: cover;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.testimonial-rating {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-name {
    color: #64748b;
    font-weight: 600;
}

.testimonial-arrow {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-blue));
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.4);
}

.testimonial-arrow:active {
    transform: scale(0.95);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 50px;
    min-height: auto;
}

.faq-content {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-title {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.faq-subtitle {
    font-size: 17px;
    color: #64748b;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.4) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(11, 106, 170, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(11, 106, 170, 0.1);
}

.faq-item.active {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    box-shadow: 0 10px 35px rgba(11, 106, 170, 0.15);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 32px;
    color: var(--primary-light);
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(42, 125, 225, 0.1));
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--primary-light), var(--accent-blue));
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.faq-answer p strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ========================================
   FOOTER - Premium Gradient
   ======================================== */
footer {
    background: linear-gradient(135deg, 
        #0B6AAA 0%, 
        #105C8F 50%,
        #0B6AAA 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 60px 50px 35px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(79, 195, 247, 0.15) 0%, transparent 70%),
                radial-gradient(circle at 70% 80%, rgba(42, 125, 225, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-logo-text {
    color: white;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-nav {
    display: flex;
    gap: 35px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

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

.footer-nav a:hover::after {
    width: 100%;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin-bottom: 35px;
}

.footer-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-info {
    flex: 0 0 auto;
}

.footer-copyright {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-weight: 500;
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: white;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

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

.footer-links a:hover::after {
    transform: scaleX(0);
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: auto;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, var(--primary-light), white);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 52px;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-right {
        flex: 0 0 400px;
    }

    .how-it-works-title {
        font-size: 36px;
    }

    .steps-container {
        gap: 30px;
    }

    .advantages-title, .pricing-title {
        font-size: 36px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid .advantage-card:nth-child(7),
    .advantages-grid .advantage-card:nth-child(8) {
        margin-left: 0;
        margin-right: 0;
    }

    .pricing-cards {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        overflow: visible;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-right {
        flex: 1;
        width: 100%;
        max-width: 450px;
    }

    .search-card {
        padding: 35px 25px;
    }

    .car-info-desktop {
        display: none;
    }

    .car-info-mobile {
        display: block;
    }

    .plate-input {
        font-size: 20px;
    }

    .reviews-section {
        padding: 60px 20px;
    }

    .reviews-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .reviews-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px 22px;
    }

    /* Como Funciona Mobile */
    .how-it-works {
        padding: 60px 20px;
    }

    .how-it-works-title {
        font-size: 28px;
    }

    .how-it-works-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-container {
        position: relative;
        top: 0;
    }

    .step-card {
        padding: 25px;
    }

    .step-number {
        font-size: 18px;
    }

    .step-description {
        font-size: 15px;
    }

    /* Vantagens Mobile */
    .advantages {
        padding: 60px 20px;
    }

    .advantages-title {
        font-size: 28px;
    }

    .advantages-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantages-grid .advantage-card:nth-child(7),
    .advantages-grid .advantage-card:nth-child(8) {
        margin-left: 0;
        margin-right: 0;
    }

    .advantage-card {
        padding: 30px 25px;
    }

    .advantage-title {
        font-size: 18px;
    }

    .advantage-description {
        font-size: 14px;
    }

    /* Preços Mobile */
    .pricing {
        padding: 60px 20px;
    }

    .pricing-title {
        font-size: 28px;
    }

    .pricing-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .pricing-carousel {
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        transform: none !important;
        transition: none !important;
    }

    .pricing-card {
        min-height: auto;
        padding: 35px 25px;
    }

    .carousel-arrow {
        display: none !important;
    }

    .carousel-indicators {
        display: none;
    }

    .price-current {
        font-size: 42px;
    }

    .pricing-description {
        font-size: 14px;
    }

    .pricing-features li {
        font-size: 14px;
    }

    .testimonials {
        padding: 60px 20px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonials-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .testimonials-carousel {
        gap: 15px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .testimonial-text {
        font-size: 17px;
    }

    .testimonial-arrow {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .faq {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 22px 20px;
        font-size: 16px;
    }

    .faq-icon {
        font-size: 28px;
        width: 30px;
        height: 30px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 22px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    footer {
        padding: 45px 20px 28px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .footer-info {
        text-align: left;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-social {
        margin-left: 0;
    }

    .footer-copyright,
    .footer-address {
        font-size: 13px;
    }

    /* Premium Plan Mobile */
    .pricing-single {
        padding: 10px;
    }

    .pricing-card-premium {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .premium-badge {
        font-size: 18px;
        padding: 12px 20px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .price-old {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .price-current-premium {
        font-size: 42px;
        margin: 15px 0 20px;
    }

    .pricing-description-premium {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .pricing-features-premium {
        columns: 1;
        margin-bottom: 25px;
    }

    .pricing-features-premium li {
        padding: 10px 0;
        font-size: 14px;
    }

    .feature-note {
        font-size: 11px;
    }

    .btn-modelo-premium {
        padding: 16px 20px;
        font-size: 15px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .btn-premium {
        padding: 18px 20px;
        font-size: 16px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 34px;
    }

    .logo-text {
        font-size: 16px;
    }

    .search-card {
        padding: 28px 18px;
    }

    .input-group label {
        font-size: 22px;
    }

    .plate-input {
        font-size: 18px;
        padding: 18px 20px;
    }

    .search-button {
        padding: 18px;
        font-size: 16px;
    }

    .how-it-works-title, .advantages-title, .pricing-title, .testimonials-title, .faq-title {
        font-size: 24px;
    }

    .step-card, .advantage-card {
        padding: 25px 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price-current {
        font-size: 38px;
    }
}



/* ========================================
   SECTION DEFAULTS (Como funciona, etc)
   ======================================== */
section {
    padding: 100px 50px;
    min-height: 50vh;
}

section h2 {
    font-size: 48px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

#como-funciona {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

#vantagens {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#precos {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

#depoimentos {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#faq {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}