        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: whitesmoke;
}

header {
    background-image: url(imagens/fotoriopreto.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    padding: 2rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    position: static;
    top: 0;
    z-index: 1000;
    overflow: hidden;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
     right: 0;
    height: 8px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    opacity: 0;
    animation: topGlow 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1c1c1c, #ffd700 25%, #ffd700 75%, #1c1c1c);
    opacity: 0;
    animation: bottomLineReveal 1s ease-out forwards;
    animation-delay: 1s;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.header-icon-wrapper {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #ffed4e 20%, #ffd700 60%, #e6c200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(255, 215, 0, 0.35), inset -2px -2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    animation: iconBounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.header-icon-wrapper img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.header-title {
    text-align: center;
    position: relative;
}

.header-title p {
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 2px;
    opacity: 0;
    animation: titleFadeIn 0.7s ease-out forwards;
    animation-delay: 0.4s;
    position: relative;
}

.title-underline {
    width: 100%;
    height: 3px;
    margin-top: 0.8rem;
    position: relative;
    overflow: hidden;
}

.title-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    opacity: 0;
    animation: underlineSlide 1.2s ease-out forwards;
    animation-delay: 1.1s;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffd700;
    opacity: 0;
    animation: underlineFill 0.6s ease-out forwards;
    animation-delay: 2s;
}

@keyframes topGlow {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes bottomLineReveal {
    from {
        width: 0%;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

@keyframes iconBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineSlide {
    from {
        left: -100%;
        opacity: 0;
    }
    to {
        left: 100%;
        opacity: 1;
    }
}

@keyframes underlineFill {
    from {
        opacity: 0;
        width: 0%;
        left: 50%;
    }
    to {
        opacity: 1;
        width: 100%;
        left: 0;
    }
}

.hero {
    background: #2a2a2a;
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: 500;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-buttons img {
    vertical-align: middle;
    margin-right: 8px;
    width: 23px;
    height: 23px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #f5d002;
    color: #000;
    border: 2px solid #f5d002;
}

.btn-primary:hover {
    background: rgb(255, 227, 71);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #25d366;
}

.btn-secondary:hover {
    background: #25d366;
    color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 3rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    border-left: 3px solid #ffd700;
}

.service-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.feature-item h3 {
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

.vehicle-showcase {
    padding: 3rem 2rem;
    background: whitesmoke;
    border-bottom: 3px solid #c2c2c2;
 }

.vehicle-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vehicle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.vehicle-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.vehicle-image-wrapper:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.vehicle-image {
    width: 100%;
    height: auto;
    display: block;
}

.vehicle-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgb(227, 193, 0);
    padding: 3px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: #ffed4e;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #ffd700;
    width: 12px;
    height: 12px;
}

.badge-icon img {
    width: 23px;
    height: 23px;
}

.badge-text {
    font-weight: 700;
    color: #000;
    font-size: 0.8rem;
}

.vehicle-features {
    display: grid;
    gap: 1.5rem;
}

.vehicle-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 3px solid #ffd700;
}

.vehicle-feature:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 0.3rem 0;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.testimonials {
    background: whitesmoke;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.testimonials-grid {
    transition: opacity 0.3s ease;
}

.testimonial-text {
    color: #333;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: #666;
    font-weight: 600;
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 1rem;
}

.contact-section {
    background: #2a2a2a;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-box {
    background: #333;
    padding: 1.5rem;
    border-radius: 4px;
}

.contact-info-box h2 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}
.contact-info-box img {
    width: 35px;
    height: 35px;
    transform: translateY(10px);
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #ffd700;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
}

.contact-item p {
    color: #fff;
    transition: color 0.3s ease;
}

.contact-item p:hover {
    color: #ffd700;
}

.contact-form {
    background: #333;
    padding: 1.5rem;
    border-radius: 4px;
    align-items: flex-start;
}

.contact-form h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}
.contact-form img {
    width: 35px;
    height: 35px;
    transform: translateY(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

select option {
    background: #363636;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

footer {
    background: #000;
    color: #666;
    text-align: center;
    padding: 2rem;
}

footer a {
    color: #d7b705;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
}
.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    line-height: 1;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #ffed4e;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
    header {
        min-height: 240px;
        padding: 1.5rem 0;
    }

    header .container {
        gap: 1rem;
    }

    .header-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .header-icon-wrapper img {
        width: 50px;
        height: 50px;
    }

    .header-title p {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 100px;
    }

    .whatsapp-float {
        bottom: 30px;
    }

    .vehicle-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .vehicle-feature {
        padding: 1.2rem;
    }
            
    .feature-icon-box {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 22px;
    }
            
    .vehicle-badge {
        bottom: 10px;
        right: 10px;
        padding: 3px;
    }
            
    .badge-text {
        font-size: 0.7rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .carousel-indicators {
        bottom: 45px;
    }
}

::-webkit-scrollbar {
    width: 10px;
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #4c4c4c;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6b6b6b;
}