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

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

:root {
    --primary-color: #00ff00;
    --primary-dark: #00cc00;
    --secondary-color: #1a1a1a;
    --tertiary-color: #2d2d2d;
    --accent-color: #00ff99;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    --success-color: #00ff00;
    --gradient: linear-gradient(135deg, #00ff00 0%, #00ff99 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* ============================================
   ANIMAÇÕES KEYFRAMES
   ============================================ */

@keyframes progress-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.8), inset 0 0 10px rgba(0, 255, 153, 0.5);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 255, 0, 1), inset 0 0 15px rgba(0, 255, 153, 0.8);
    }
}

@keyframes progress-shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* ============================================
   BARRA DE PROGRESSO
   ============================================ */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #00ff00 0%, #00ff99 50%, #00ff00 100%);
    background-size: 200% 100%;
    z-index: 10000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8), inset 0 0 10px rgba(0, 255, 153, 0.5);
    animation: progress-shine 3s linear infinite, progress-pulse 2s ease-in-out infinite;
    border-radius: 2px;
    transition: width 0.1s ease-out;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    height: 8px;
    width: 50px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 153, 0.8), transparent);
    filter: blur(3px);
    border-radius: 2px;
}

/* ============================================
   TIPOGRAFIA E BASE
   ============================================ */

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

p {
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.7;
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    z-index: 1000;
    padding: 1.2rem 2rem 0.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.nav-container {
    max-width: auto;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    letter-spacing: 0.5px;
}

.logo-icon {
    font-size: 3.8rem;
    height: 80px;
    display: flex;
    align-items: center;
}

.logo-icon img {
    height: 100%;
    width: auto;
    max-width: 80px;
    transition: transform 0.3s ease;
}

.logo-icon img:hover {
    transform: scale(1.08);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 0, 0.15);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--primary-color);
}

.nav-links a:hover::after {
    width: 40px;
}

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

.hero {
    margin-top: 180px;
    min-height: calc(100vh - 180px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    gap: 4rem;
}

.hero-content {
    flex: 0 0 45%;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: slideInLeft 0.8s ease 0.1s both;
}

.hero-description {
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease 0.3s both;
    box-shadow: 0 8px 30px rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(0, 255, 0, 0.5);
    background: linear-gradient(135deg, #00ff00 0%, #00ffcc 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

.hero-visual {
    flex: 0 0 50%;
    position: relative;
    height: 550px;
    width: 100%;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 255, 153, 0.1)), url('src/imgs/img1.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 255, 0, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.gradient-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.4), transparent);
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 153, 0.3), transparent);
    bottom: 20%;
    left: 15%;
    animation: float 10s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.game-card {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 255, 153, 0.1));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 255, 0, 0.1);
    animation: slideInRight 0.8s ease;
}

.game-card-icon {
    font-size: 4rem;
    animation: bounce 2s infinite;
}

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

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

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

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(0, 255, 153, 0.05));
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 255, 153, 0.15));
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   PACKAGE DETAILS
   ============================================ */

.package-details {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
    position: relative;
}

.package-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.3), transparent);
}

.package-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.package-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.08), rgba(0, 255, 153, 0.08));
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 0, 0.15);
}

.package-item:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 255, 153, 0.12));
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.1);
}

.package-check {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.package-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.package-content p {
    font-size: 0.9rem;
}

/* ============================================
   PRICE SECTION
   ============================================ */



.price-section {
    padding: 6rem 2rem;
    background: var(--dark-gradient);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price-card {
    max-width: 500px;
    margin: 3rem auto;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.08), rgba(0, 255, 153, 0.08));
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 50px rgba(0, 255, 0, 0.15);
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.2);
    border-color: var(--primary-color);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.price-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.price-display {
    margin: 2rem 0;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.price-amount {
    font-size: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: block;
}

.price-description {
    color: var(--text-secondary);
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.price-features {
    text-align: left;
    margin: 2rem 0;
    background: rgba(0, 255, 0, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.1);
}

.feature-item {
    padding: 0.8rem 0;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-item::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.8rem;
}

.purchase-button {
    width: 100%;
    padding: 1.3rem 2rem;
    background: var(--gradient);
    color: #000;
    border: none;
    border-radius: 15px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 30px rgba(0, 255, 0, 0.3);
}

.purchase-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(0, 255, 0, 0.5);
    background: linear-gradient(135deg, #00ff00 0%, #00ffcc 100%);
}

.purchase-button:active {
    transform: translateY(-2px);
}

.button-icon {
    font-size: 1.3rem;
}

.price-info {
    max-width: 600px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.price-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ============================================
   CARS SELECTION SECTION
   ============================================ */

.cars-section {
    padding: 6rem 2rem;
    background-color: #0f0f0f;
}

.cars-info {
    text-align: center;
    margin-bottom: 3rem;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 255, 153, 0.1));
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 1rem;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.car-card {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(0, 255, 153, 0.05));
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.car-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.car-card:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 255, 153, 0.15));
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.2);
}

.car-card:hover::before {
    transform: scaleX(1);
}

/* Cars Toggle Button */

.cars-toggle-container {
    text-align: center;
    margin-bottom: 2rem;
}

.cars-toggle-btn {
    background: var(--gradient);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.cars-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.5);
}

.cars-toggle-btn:active {
    transform: translateY(-1px);
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-weight: 700;
}

.cars-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.cars-toggle-btn.active .toggle-text {
    content: 'Ocultar Categorias';
}

/* Cars Grid Hidden State */

.cars-grid.cars-hidden {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.cars-grid {
    display: grid;
    animation: slideDown 0.4s ease forwards;
}

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

.car-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 255, 153, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.car-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 255, 0, 0.3));
    transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

.car-icon {
    font-size: 3rem;
    animation: bounce 2s infinite;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Car Colors */
.car-color-red .car-icon {
    filter: hue-rotate(-20deg) saturate(1.5);
    color: #ff0000;
}

.car-color-blue .car-icon {
    filter: hue-rotate(200deg) saturate(1.3);
    color: #0099ff;
}

.car-color-yellow .car-icon {
    filter: hue-rotate(45deg) saturate(1.8);
    color: #ffdd00;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 221, 0, 0.5);
}

.car-color-purple .car-icon {
    filter: hue-rotate(280deg) saturate(1.4);
    color: #dd00ff;
}

.car-color-cyan .car-icon {
    filter: hue-rotate(180deg) saturate(1.5);
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 255, 255, 0.4);
}

.car-color-lime .car-icon {
    filter: hue-rotate(80deg) saturate(1.6);
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 255, 0, 0.3);
}

.car-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.car-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.car-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Car Selection Process */

.car-selection-process {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(0, 255, 153, 0.05));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
}

.car-selection-process h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.08), rgba(0, 255, 153, 0.08));
    border: 1px solid rgba(0, 255, 0, 0.15);
    transition: all 0.3s ease;
}

.step:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 255, 153, 0.12));
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */

.showcase {
    padding: 6rem 2rem;
    background-color: #0f0f0f;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.08), rgba(0, 255, 153, 0.08));
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 0, 0.15);
}

.showcase-item:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 255, 153, 0.12));
    border-color: var(--primary-color);
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.15);
}

.showcase-image {
    width: 100px;
    height: 100px;
    background: var(--dark-gradient);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-image {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.showcase-emoji {
    font-size: 2.5rem;
}

.showcase-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.showcase-item p {
    font-size: 0.95rem;
}

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

.final-cta {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    border-top: 1px solid rgba(0, 255, 0, 0.15);
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.primary-button {
    padding: 1.2rem 3rem;
    background: var(--gradient);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.5);
}

.cta-info {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(0, 255, 0, 0.15);
    padding: 3.5rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }
    
    .navbar {
        padding: 1rem 1rem 0.8rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-container {
        width: 100%;
        justify-content: center;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        height: 35px;
    }

    .nav-links {
        gap: 0.5rem;
        margin: 0;
        flex-wrap: nowrap;
        width: 100%;
        justify-content: center;
    }

    .nav-links a {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .hero {
        flex-direction: row;
        margin-top: 160px;
        padding: 2.5rem 1.5rem;
        min-height: auto;
        gap: 2rem;
    }

    .hero-content {
        flex: 0 0 45%;
        text-align: left;
    }

    .hero-visual {
        flex: 0 0 50%;
        height: 380px;
        margin-top: 0;
        width: 100%;
        background-attachment: fixed;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .price-card {
        margin: 2rem 1rem;
        padding: 2rem 1.5rem;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .car-image {
        height: 150px;
    }

    .cars-toggle-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

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

    .final-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    * {
        max-width: 100vw;
    }

    .navbar {
        padding: 0.8rem 0.5rem;
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        width: 100vw;
        margin: 0;
        box-sizing: border-box;
    }

    .nav-container {
        padding: 0;
        justify-content: center;
        width: 100%;
    }

    .logo {
        font-size: 1rem;
        gap: 0.5rem;
    }

    .logo-icon {
        height: 28px;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.9rem;
        margin: 0;
        justify-content: center;
        padding: 0;
        flex-wrap: nowrap;
        width: 100%;
    }

    .nav-links a {
        padding: 0.7rem 1rem;
        font-size: 0.93rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .hero {
        margin-top: 140px;
        padding: 2rem 1rem;
        min-height: auto;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        overflow: hidden;
        width: 100%;
    }

    .hero-content {
        flex: 1;
        max-width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-description p {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .section-header {
        padding: 2rem 0;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cars-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .car-card {
        padding: 1.5rem 1rem;
    }

    .car-image {
        height: 140px;
    }

    .cars-toggle-btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.92rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }

    .final-cta p {
        font-size: 0.95rem;
    }

    .primary-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .package-item {
        padding: 1rem;
    }

    .price-card {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }

    .package-details {
        padding: 3rem 1.5rem;
    }}