/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #000000;
    --color-secondary: #111111;
    --color-white: #FFFFFF;
    --color-accent: #C5A059;
    --color-gray: #333333;
    --color-light-gray: #F5F5F5;
    --color-text-gray: #666666;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-primary);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background-color: var(--color-primary);
    position: relative;
}

.navbar {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    color: #CCCCCC;
    margin-bottom: 40px;
    font-weight: 300;
}

.app-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.badge-link img {
    height: 25px;
    width: auto;
    transition: transform 0.3s;
}

.badge-link img[src*="google_play"] {
    height: 50px;
}

.badge-link img[src*="app_store"] {
    height: 32px;
}

.badge-link:hover img {
    transform: scale(1.05);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phone-logo {
    width: 35%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

.floating-features {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.feature-badge {
    position: absolute;
    background: rgba(197, 160, 89, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-accent);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Feature Banner */
.feature-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    background-image: url('media/background_carros_pista.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 60px 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.logo-pin {
    font-size: 48px;
}

.banner-logo h2 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 8px;
}

.banner-text {
    font-size: 28px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.4;
    font-weight: 300;
}

.banner-text strong {
    font-weight: 700;
    color: var(--color-accent);
}

.btn-cta {
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 3;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--color-white);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--color-light-gray);
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--color-primary);
    margin-bottom: 80px;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.service-card h3 {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--color-text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--color-primary);
}

/* Stats Banner */
.stats-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    background-image: url('media/background_cidade.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 60px 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.stats-text {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 4px;
    text-align: center;
}

/* About Section */
.about {
    background: var(--color-primary);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 600px;
}

.about-left {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.about-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 8px;
    line-height: 1.2;
}

.about-right {
    display: flex;
    align-items: center;
    padding: 60px;
}

.about-content {
    background: var(--color-white);
    color: var(--color-gray);
    padding: 60px;
    border-radius: 8px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.3);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background: var(--color-white);
}

.clients-title {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--color-primary);
    margin-bottom: 60px;
}

.clients-carousel {
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Divider */
.divider {
    position: relative;
    height: 100px;
    background: var(--color-light-gray);
}

.divider svg {
    width: 100%;
    height: 100%;
}

.vehicle-icons {
    position: absolute;
    top: 20px;
    width: 100%;
}

.vehicle {
    position: absolute;
    font-size: 32px;
    animation: drive 5s ease-in-out infinite;
}

@keyframes drive {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--color-primary);
}

.contact-title {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.title-line {
    width: 100px;
    height: 2px;
    background: var(--color-accent);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    background: var(--color-white);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--color-primary);
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--color-gray);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--color-primary);
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-apps {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-apps .badge-link img {
    height: 25px;
    width: auto;
}

.footer-apps .badge-link img[src*="google_play"] {
    height: 50px;
}

.footer-apps .badge-link img[src*="app_store"] {
    height: 32px;
}

.footer-social {
    display: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-left {
        padding: 40px;
    }
    
    .about-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
        letter-spacing: 6px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .banner-text {
        font-size: 20px;
    }
    
    .stats-text {
        font-size: 28px;
        padding: 0 20px;
    }
}
