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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
    position: relative;
}

/* Header Styles */
header {
    background-color: #4a5d23;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-container {
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.logo {
    max-height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

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

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e0e0e0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    max-width: 800px;
    margin: 2rem auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #4a5d23;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.money-animation {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.money-emoji {
    font-size: 1.8rem;
    animation: jumpMoney 1s ease-in-out infinite;
}

.money-emoji:nth-child(2) {
    animation-delay: 0.2s;
}

.money-emoji:nth-child(3) {
    animation-delay: 0.4s;
}

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

/* Main Content */
main {
    margin-top: 140px;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Section Headings */
section h2 {
    text-align: center;
    color: #4a5d23;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}
/* Products Section */
.produto-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.produtos {
    text-align: center;
}
.produto-item {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    transition: transform 0.3s ease;
}

.produto-item h3 {
    color: #4a5d23;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.produto-carousel {
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
}

.produto-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

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

/* About Section */
.sobre {
    text-align: center;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Contact Section */
.contato {
    text-align: center;
}
.contato-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.contato-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 250px;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Footer */
footer {
    background-color: #4a5d23;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

/* Remove Balls Control */
.balls-control {
    display: none;
}

/* Responsive adjustments */
@media screen and (max-width: 968px) {
    .produto-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (min-width: 1200px) {
    .produto-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .produto-item {
        min-width: 280px;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    .contato-item {
        width: 100%;
        margin: 0 1rem;
    }
}
/* Dark Mode */
.dark-mode {
    background-color: #121212;
    color: #f5f5f5;
}

.dark-mode header {
    background-color: #1e1e1e;
}

.dark-mode nav ul li a {
    color: #e0e0e0;
}

.dark-mode .hero {
    background: rgba(30, 30, 30, 0.9);
}

.dark-mode .produto-item {
    background: #1e1e1e;
}

.dark-mode .contato-item {
    background: #1e1e1e;
}

.dark-mode .whatsapp-float {
    background-color: #25D366;
}

.dark-mode .whatsapp-float:hover {
    background-color: #128C7E;
}

.dark-mode footer {
    background-color: #1e1e1e;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }
}