* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #ffffff;
    --dark-bg: #0f0f0f;
    --light-text: #f5f5f5;
    --gray-text: #b0b0b0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--light-text);
    background-color: var(--dark-bg);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 120%;
    min-height: 120%;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.7) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(15, 15, 15, 0.7) 100%);
    z-index: 2;
    animation: fadeInOverlay 1s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 4;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInDown 1s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    animation: slideInUp 1s ease 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e0c851 100%);
    color: var(--primary-color);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    animation: slideInUp 1s ease 0.4s both;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Google Reviews Section */
.google-reviews {
    padding: 6rem 0;
    background: var(--primary-color);
    overflow: hidden;
    position: relative;
}

.reviews-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.google-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
}

.google-icon {
    width: 20px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 25px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.rating-summary .score {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
}

.rating-summary .stars {
    color: #f1c40f;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.reviews-count {
    color: var(--gray-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.reviews-carousel-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-window {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    min-height: 350px;
}

/* Loading State */
.loading-reviews {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--gray-text);
    padding: 4rem 0;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.review-card-modern {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-card-modern:hover {
    border-color: var(--secondary-color);
    background: rgba(40, 40, 40, 0.6);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.card-stars {
    color: #f1c40f;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.card-google-icon {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 22px;
    opacity: 0.3;
    transition: 0.3s;
}

.review-card-modern:hover .card-google-icon {
    opacity: 0.8;
    transform: rotate(15deg);
}

.review-text {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.1;
    font-family: serif;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.footer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #b89329);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-info strong {
    display: block;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.footer-info span {
    color: var(--gray-text);
    font-size: 0.85rem;
}

.nav-prev, .nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-prev:hover, .nav-next:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.nav-prev { left: 0; }
.nav-next { right: 0; }

@media (max-width: 992px) {
    .review-card-modern {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .review-card-modern {
        flex: 0 0 100%;
    }
    .reviews-carousel-container {
        padding: 0 40px;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

/* Section Title */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    width: 100%;
    color: var(--accent-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background: var(--primary-color);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-top: -3rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    align-items: center;
}

/* Wrapper padronizado para cada logo parceiro */
.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 70px;
    flex-shrink: 0;
    transition: var(--transition);
}

.partner-logo-item img {
    max-width: 80%;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--transition);
}

.partner-logo-item:hover img {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.85));
    transform: scale(1.1);
}

.partners-marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-content {
        gap: 1rem;
        animation-duration: 25s;
    }
    .partner-logo-item {
        width: 110px;
        height: 55px;
    }
    .partner-logo-item img {
        max-height: 42px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Melhora a responsividade e centralização */
    justify-content: center;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(45, 45, 45, 0.4) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    text-align: center;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: conic-gradient(var(--secondary-color), #9d7f2c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 2rem;
    color: var(--accent-color);
    transform: translateY(80px);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.5) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
}

.feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--gray-text);
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.about-image:hover img {
    border-color: var(--secondary-color);
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.mission-card {
    background: rgba(45, 45, 45, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.mission-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
    background: rgba(45, 45, 45, 0.5);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.mission-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 12px;
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.4;
}

.values-list li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.values-list strong {
    color: var(--accent-color);
    fontWeight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--gray-text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--light-text);
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-text);
}

.submit-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e0c851 100%);
    color: var(--primary-color);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: var(--primary-color);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem 0;
    text-align: center;
    color: var(--gray-text);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--gray-text);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.dev-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--gray-text);
    font-size: 0.85rem;
    transition: var(--transition);
}

.dev-credit:hover {
    color: var(--secondary-color);
}

.dev-credit img {
    height: 28px; /* Aumentado para melhor legibilidade */
    width: auto;
    filter: grayscale(1) brightness(0.8);
    transition: var(--transition);
}

.dev-credit:hover img {
    filter: none;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}
/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: none; /* Hidden during loading */
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--secondary-color);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.close-lightbox:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Car Loader Presentation */
.car-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; /* Reduzido drasticamente para aproximar os elementos */
    color: var(--secondary-color);
    text-align: center;
}

.car-presentation {
    position: relative;
    width: 250px; 
    height: 100px; /* Reduzido para encaixar melhor */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0; /* Removido margin extra */
}

.car-silhouette {
    width: 200px; 
    height: 100px;
    background-color: var(--secondary-color);
    -webkit-mask-image: url('images/silhueta carro.svg');
    mask-image: url('images/silhueta carro.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    
    animation: carPulse 2s ease-in-out infinite;
}

@keyframes carPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.05); /* Pulso mais sutil para o novo tamanho */
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
        opacity: 1;
    }
}

.loader-text {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 300;
    margin-top: 0;
    animation: blink 1.5s infinite;
}

.car-loader p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Refinement */
.navbar, .service-card, .contact-form input, .contact-form textarea {
    background: rgba(26, 26, 26, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.service-card:hover {
    background: rgba(45, 45, 45, 0.6) !important;
    border-color: var(--secondary-color) !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.5);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}
