:root {
    --primary: #FDE803; /* Amarelo Vibrante */
    --primary-dark: #ccbc02;
    --bg-dark: #0A0A0A;
    --bg-card: #141414;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    --white: #FFFFFF;
    --gap: 2rem;
    --sharp: 0px; /* Geometria Sharp (Regra Premium-Noir) */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography & Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    border-radius: var(--sharp);
}

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

.btn-primary:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(253, 232, 3, 0.2);
}

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

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

.btn-lg {
    padding: 1.5rem 3.5rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(253, 232, 3, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 50%, transparent 100%);
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title span {
    display: block;
    color: var(--primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
}

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

.service-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-img-container {
    height: 250px;
    overflow: hidden;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-container img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 2rem 2rem 0.5rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.service-card p {
    padding: 0 2rem 2.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.services-list-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
    justify-content: center;
}

.service-item {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Showcase Services (Geometric Design) */
.showcase-services {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
}

.geo-shape {
    height: 100%;
    transform: skewX(-20deg);
    margin-left: -5%;
}

.geo-1 { width: 30%; background: linear-gradient(90deg, #051e3e, #0a3d62); opacity: 0.1; } /* Tons de azul escuro/grafite para profundidade */
.geo-2 { width: 15%; background: var(--bg-card); }
.geo-3 { width: 25%; background: rgba(255, 255, 255, 0.03); }
.geo-4 { width: 40%; background: linear-gradient(90deg, rgba(253, 232, 3, 0.05), transparent); }

.showcase-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

.showcase-image-container {
    position: relative;
}

.showcase-car-img {
    width: 110%;
    transform: translateX(-5%);
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8));
    animation: floatCar 6s ease-in-out infinite;
}

@keyframes floatCar {
    0%, 100% { transform: translateX(-5%) translateY(0); }
    50% { transform: translateX(-5%) translateY(-15px); }
}

.showcase-content {
    padding-left: 2rem;
}

.showcase-tag {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.showcase-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.showcase-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.showcase-list {
    list-style: none;
    margin-bottom: 3rem;
}

.showcase-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.showcase-list li:hover {
    transform: translateX(10px);
}

.showcase-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
}

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

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

/* Stats Section Update */
.stats {
    padding: 80px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 600;
}

/* Certifications Section */
.certifications {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

.certifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.cert-logo-box {
    height: 60px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.cert-logo-box img {
    height: 100%;
    object-fit: contain;
}

.cert-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.iqa-wrapper {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255,255,255,0.02);
    padding: 4rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.iqa-details h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.iqa-details p {
    color: var(--text-muted);
    line-height: 1.8;
}

.iqa-visual img {
    max-width: 200px;
    display: block;
    margin: 0 auto;
}

.cert-footer {
    margin-top: 5rem;
}

/* Differences Section */
.differences {
    padding: 100px 0;
    background-color: #0A0A0A;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.differences-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.diff-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.diff-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: rgba(253, 232, 3, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.diff-item:hover .diff-icon {
    background: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.diff-icon svg {
    width: 20px;
    height: 20px;
}

.diff-content h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.diff-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact / Form */
.contact {
    padding: 100px 0;
    background-color: #0F0F0F;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.contact-title span {
    color: var(--primary);
}

.contact-form {
    background-color: var(--bg-card);
    padding: 3rem;
    border-top: 5px solid var(--primary);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.form-group input, 
.form-group select {
    width: 100%;
    background: #1A1A1A;
    border: none;
    border-bottom: 1px solid rgba(253, 232, 3, 0.2);
    padding: 1.2rem;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    border-radius: var(--sharp);
}

.form-group input:focus, 
.form-group select:focus {
    border-bottom-color: var(--primary);
}

/* Testimonials Slider */
.testimonials {
    padding: 100px 0;
    background-color: #0A0A0A;
}

.testimonial-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 2rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.testimonial-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.4rem);
    background: #151515;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(253, 232, 3, 0.3);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.stars {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.social-badge svg {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    overflow: hidden;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-meta h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.user-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer Redesign */
.footer {
    padding: 80px 0 30px;
    background-color: #0A0A0A;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.footer-col h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo img {
    height: 90px;
    width: auto;
    display: block;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    color: var(--white);
    transition: color 0.3s;
}

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

.social-links svg {
    width: 24px;
    height: 24px;
}

.contact-list p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.contact-list a {
    color: var(--primary);
    text-decoration: none;
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .contact-wrapper { gap: 3rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 768px) {
    .nav {
        justify-content: center;
        position: relative;
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        right: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: #0A0A0A;
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        padding: 4rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(253, 232, 3, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .hero-title { font-size: 3rem; }
    .hero-actions { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .differences-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .testimonial-card { flex: 0 0 100%; }
    .certifications-grid { grid-template-columns: 1fr; gap: 3rem; }
    .iqa-wrapper { grid-template-columns: 1fr; padding: 2rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-info { text-align: center; }

    /* Showcase Responsive */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        justify-items: center; /* Garante que os containers fiquem no centro */
    }

    .showcase-content {
        padding-left: 0;
        max-width: 100%;
    }

    .showcase-car-img {
        width: 100%;
        max-width: 500px; /* Limita largura no mobile para não ocupar demais */
        transform: translateX(0) !important; /* Remove o deslocamento do desktop */
        margin: 0 auto;
    }

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

    .showcase-list {
        display: inline-block; /* Permite que o text-align center do pai funcione se quisermos centralizar o bloco */
        text-align: left;
        margin: 0 auto 3rem;
        padding: 0;
    }

    .showcase-list li {
        width: auto;
    }
}
