/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #3be1c9;
    --primary-foreground: #242328;
    --secondary: #64748b;
    --background: #ffffff;
    --foreground: #0f172a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --dark: #1e293b;
    --dark-foreground: #f8fafc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3be1c9 0%, #3be1c9 100%);
    --gradient-hero: linear-gradient(135deg, #242328 0%, #1E1E1E 100%);
    
    /* Shadows */
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-elegant: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 5rem 0;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--foreground);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scale-hover {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out forwards;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 800px;
}

.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}
.btn-hero1{
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}
.btn-hero {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--dark);
}

.btn-cta {
    background: #25d366;
    color: white;
}

.btn-cta:hover {
    background: #1da851;
}

.btn-success {
    background: #25d366;
    color: white;
}

.btn-success:hover {
    background: #1da851;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #242328;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 3rem;
    width: auto;
}

.logo-text .company-name {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
}

.logo-text .subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.header-buttons {
    display: none;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    animation: fade-in 0.3s ease-out;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    transition: var(--transition);
}

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

.mobile-buttons {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-buttons {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Video Container */
.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
    transition: filter 0.3s ease;
}

/* Hover effect on video */
.hero-section:hover .hero-video {
    filter: brightness(0.9) contrast(1.2);
}

/* Hero Logo Float */
.hero-logo-float {
    position: absolute;
    top: 570px;
    right: 120px;
    z-index: 5;
    padding: 15px;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-logo-float:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.hero-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

/* Fallback for old hero background */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    animation: fade-in 0.6s ease-out;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: white;
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    .hero-buttons-dwn {
        display: flex;
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center;     /* Centraliza verticalmente */
        height: 100%;    
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cars Section */
.cars-section {
    padding: var(--section-padding);
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fade-in 0.6s ease-out;
}

.section-header .section-title {
    margin: 0 auto;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.cars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.car-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    animation: fade-in 0.6s ease-out;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.car-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.car-content {
    padding: 1.5rem;
}

.car-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.car-model {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.car-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.car-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.car-features li {
    font-size: 0.875rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    padding-left: 0;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
}

.car-features li:last-child {
    margin-bottom: 0;
}

.car-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.price-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cars-footer {
    text-align: center;
}

.disclaimer {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Career Section */
.career-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.career-header {
    margin-bottom: 3rem;
}

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

@media (min-width: 768px) {
    .career-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

.career-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.career-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-elegant);
    object-fit: cover;
    aspect-ratio: 1414/1599;
}

.career-description {
    text-align: left;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.career-description > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.career-benefits,
.career-requirements {
    margin-bottom: 2rem;
}

.career-benefits h3,
.career-requirements h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.career-benefits ul,
.career-requirements ul {
    list-style: none;
    padding: 0;
}

.career-benefits ul li,
.career-requirements ul li {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    font-size: 1rem;
}

.career-cta {
    text-align: center;
    padding: 2rem 0 1rem;
    border-top: 1px solid var(--border);
}

.career-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.btn-career {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-career:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.career-note {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
    font-style: italic;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--muted);
}

.about-content {
    text-align: center;
    margin-bottom: 4rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.section-text {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    text-align: center;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    color: white;
    font-size: 2rem;
}

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

.feature-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--background);
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--muted);
}

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

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

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

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

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

.faq-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-cta p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.faq-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .faq-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: #242328;
    color: #242328;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .company-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo .subtitle {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

.footer-logo .subtitle span {
    font-size: 0.75rem;
    color: #9ca3af;
}

.footer-description {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.footer-links li:not(:has(a)) {
    color: #d1d5db;
    font-size: 0.875rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: var(--primary);
    font-size: 1rem;
}

.contact-item a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.contact-item span {
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.badge-link:hover {
    background: rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}

.badge-link i {
    margin-right: 0.25rem;
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== VEHICLE PAGES STYLES ===== */
.content-block {
    margin: 2rem 0;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
}

.highlight-box i {
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.highlight-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.success-story {
    background: var(--muted);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

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

.success-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.success-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.success-text h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-text p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.success-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.success-author strong {
    color: var(--foreground);
    font-size: 1rem;
}

.success-author span {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .highlight-box {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .success-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .success-image img {
        height: 200px;
    }
}

/* Floating Simulation Button */
.floating-simulation-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 40;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 3rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition);
}

.floating-simulation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    background: white;
    border-radius: 1rem;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: var(--transition);
}

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

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

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--muted);
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon i {
    color: white;
    font-size: 2rem;
}

.modal-body h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* Form Styles */
.simulation-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo-float {
        top: 650px;
        right: 300px;
        padding: 10px;
        border-radius: 15px;
    }
    
    .hero-logo {
        height: 35px;
    }
    
    .floating-simulation-btn span {
        display: none;
    }
    
    .floating-simulation-btn {
        padding: 1rem;
        border-radius: 50%;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ===== CLIENTES CONTEMPLADOS GRID CAROUSEL ===== */
.clientes-contemplados-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.contemplados-header {
    text-align: center;
    margin-bottom: 60px;
}

.contemplados-header .section-title {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contemplados-header .section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Container */
.contemplados-grid-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.contemplados-track {
    display: flex;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    padding: 20px 0;
}

.contemplados-track:active {
    cursor: grabbing;
}

/* Cliente Items */
.cliente-item {
    flex: 0 0 280px;
    position: relative;
    transition: all 0.4s ease;
}

.cliente-item:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

.cliente-image {
    width: 100%;
    height: 375px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.cliente-item:hover .cliente-image {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.12);
    filter: brightness(1.05);
}

/* Navigation Controls */
.grid-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 20;
}

.grid-btn {
    background: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--text-dark);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 3px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.grid-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.15);
    box-shadow: 
        0 10px 30px rgba(37, 99, 235, 0.3),
        0 5px 12px rgba(0, 0, 0, 0.15);
}

.grid-btn.prev {
    left: 10px;
}

.grid-btn.next {
    right: 10px;
}

/* Auto-scroll Animation */
@keyframes autoScroll {
    0% { transform: translateX(0); }
    20% { transform: translateX(-300px); }
    40% { transform: translateX(-600px); }
    60% { transform: translateX(-900px); }
    80% { transform: translateX(-1200px); }
    100% { transform: translateX(-1500px); }
}

.contemplados-track.auto-scrolling {
    animation: autoScroll 25s infinite linear;
}

.contemplados-track.auto-scrolling:hover {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contemplados-grid-container {
        padding: 0 50px;
    }
    
    .cliente-item {
        flex: 0 0 240px;
    }
    
    .cliente-image {
        height: 320px;
    }
    
    .grid-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .clientes-contemplados-section {
        padding: 60px 0;
    }
    
    .contemplados-header {
        margin-bottom: 40px;
    }
    
    .contemplados-grid-container {
        padding: 0 40px;
    }
    
    .contemplados-track {
        gap: 15px;
    }
    
    .cliente-item {
        flex: 0 0 200px;
    }
    
    .cliente-image {
        height: 267px;
        border-radius: 10px;
    }
    
    .grid-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .grid-btn.prev {
        left: 5px;
    }
    
    .grid-btn.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .contemplados-grid-container {
        padding: 0px;
    }
    
    .contemplados-track {
        gap: 12px;
    }
    
    .cliente-item {
        flex: 0 0 160px;
    }
    
    .cliente-image {
        height: 214px;
        border-radius: 8px;
    }
    
    .grid-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .grid-btn.prev {
        left: 0;
    }
    
    .grid-btn.next {
        right: 0;
    }
}

/* Entrance Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clientes-contemplados-section.animate-fade-in {
    animation: slideInUp 0.8s ease forwards;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-header .section-title {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.location-header .section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Location Content Layout */
.location-content {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* When both card and map are present */
.location-content.has-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
}

/* Single card centering */
.location-content:not(.has-map) .location-info-card,
.location-content .location-info-card:only-child {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

/* Info Card */
.location-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 20px 20px 0 0;
}

.location-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Info Header */
.info-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    position: relative;
}

.info-icon i {
    z-index: 1;
}

/* Fallback se o ícone não carregar */
.info-icon::before {
    content: "📍";
    font-size: 2rem;
    position: absolute;
    z-index: 0;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

/* Address Details */
.address-details {
    margin-bottom: 32px;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.address-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

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

.address-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 2px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.address-text {
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Location Actions */
.location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.location-actions .btn {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    padding: 14px 20px;
}

.location-actions .btn i {
    font-size: 1.1rem;
}

/* Google Maps Container */
.google-maps-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.google-maps-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Map Overlay */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.map-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

/* Google Map Iframe */
.google-map {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .location-content {
        gap: 30px;
    }
    
    .location-info-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 60px 0;
    }
    
    .location-header {
        margin-bottom: 40px;
    }
    
    .location-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .location-content.has-map {
        display: flex;
        flex-direction: column;
    }
    
    .location-info-card {
        padding: 24px;
        max-width: 500px;
        width: 100%;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .info-title {
        font-size: 1.3rem;
    }
    
    .address-item {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-actions .btn {
        min-width: auto;
    }
    
    .google-map,
    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .location-info-card {
        padding: 20px;
    }
    
    .info-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .address-details {
        margin-bottom: 24px;
    }
    
    .address-item {
        gap: 12px;
        padding: 12px;
    }
    
    .address-text {
        font-size: 0.9rem;
    }
    
    .google-map,
    .map-placeholder {
        height: 250px;
    }
    
    .map-placeholder i {
        font-size: 2rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 6px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f5f9;
}