/* Estilos responsivos para Home (até 768px) */

/* Hero Section */
.hero {
    height: auto;
    min-height: 70vh;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-top: 120px !important;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
}

/* Foi transferido para o mobile.css */
/* .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

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

/* Seção de Produtos */
.products-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Seção Sobre */
.about-section {
    padding: 40px 0;
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Depoimentos */
.testimonials-section {
    padding: 40px 0;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin: 0 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    /* background-color: #1a1a1a;
    color: #fff; */
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #999;
}

/* Botão Voltar ao Topo */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Media Queries para ajustes específicos */
@media (min-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    #mainNav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        overflow: visible;
    }
    
    #mainNav ul {
        flex-direction: row;
    }
    
    #mainNav ul li a {
        border: none;
        padding: 10px 15px;
    }
    
    #mobileMenu {
        display: none;
    }
    
    .hero-content {
        padding: 100px 0 !important;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

#mainNav ul li {
    margin: 15px 0;
}

.mobile-menu {
    display: block;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}
