/* Variáveis */
:root {
    --primary-color: #eb580c;
    --secondary-color: #000000;
    --white: #ffffff;
    --paragrath: #535353;
}

/* Reset e estilos globais */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Header */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eb580c, #ff8c00);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-radius: 0px 0px 0px 100px;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
}

.title-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* espaço entre o texto e a imagem */
    flex-wrap: nowrap;
}

.wheel-icon {
    width: 28px;
    height: auto;
    margin-bottom: 4px; /* alinhamento fino opcional */
}

.products{
    background: linear-gradient(135deg, #eb580c, #ff8c00);
}

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

.whatsapp-float:hover {
    background-color: #23c45d;
    width: 70px;
    height: 70px;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

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

/* Feature Icons */
.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon i {
    font-size: 24px;
    color: var(--white);
}

/* Social Links */
.social-links a {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

/* only about */

.about-div-title{
    background: linear-gradient(135deg, #eb580c, #ff8c00);
    padding-top: 100px;
    min-height: 20vh;
    border-radius: 0px 0px 0px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white );
    padding-bottom: 20px;
}

.about-div-title h1{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.about-paragraph {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px; /* garante responsividade em telas pequenas */
}

.lead-about{
    font-family: 'Poppins', sans-serif;
    color: var(--paragrath);
    font-size: larger;
}
