/* Estilos Globais */

:root {

    --verde-cana: #7ab906;
    --laranja-claro: #ff914d;
    --preto-suave: #222;
    --cinza-claro: #f8f8f8;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body {

    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: var(--cinza-claro);
    color: var(--preto-suave);
}


.container {

    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}


h1, h2 {

    font-weight: 700;
}


h2 {

    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: #555;
}



#kits, #ferramentas {
    display: none;
}

/* Header */

.header {

    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {

    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {

    width: 40px;
    margin-right: 10px;
}

.logo-text {

    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--preto-suave);
}

.nav-menu a {

    text-decoration: none;
    color: #555;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}


.nav-menu a:hover {

    color: var(--verde-cana);
}


/* Hamburger Menu (visível apenas em telas pequenas) */


.hamburger-menu {

    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu .bar {

    width: 25px;
    height: 3px;
    background-color: var(--preto-suave);
    border-radius: 10px;
    transition: all 0.3s linear;
}



/* Hero Section */


.hero-section {

    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.hero-container {

    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.hero-text {

    width: 50%;
}

.hero-text h1 {

    font-size: 3.5rem;
    color: var(--preto-suave);
    margin-bottom: 20px;
}

.hero-text p {

    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-image-box {

    width: 45%;
}

.hero-image {

    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-button {

    display: inline-block;
    padding: 15px 30px;
    background-color: var(--laranja-claro);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {

    background-color: #ff7f2a;
}

.divider {

    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    margin: 50px 0;
}



/* Seções de Produtos */


.products-section {

    padding: 60px 0;
}

.product-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {

    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

.product-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-img {

    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-title {

    font-size: 1.3rem;
    color: #444;
    margin-bottom: 10px;
}

.product-desc {

    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

.product-button {

    display: inline-block;
     padding: 10px 15px;
    background-color: var(--verde-cana);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.product-button:hover {

    background-color: #659a05;
}



/* Footer */


.footer {

    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.footer .social-links a {

    margin: 0 10px;
}

.footer .social-links img {

    width: 24px;
    height: auto;
}


.footer-link {

    color: #fff; /* Cor branca para o texto */
    text-decoration: none; /* Remove o sublinhado padrão */
    font-size: 0.9rem; /* Tamanho da fonte menor */
    margin-top: 10px; /* Espaço acima do link */
    display: block;
}

.footer-link:hover {

    text-decoration: underline; /* Adiciona sublinhado ao passar o mouse */
}



/* Responsividade para Mobile */


@media (max-width: 768px) {

    .header-content {
        flex-wrap: wrap;
    }

    .nav-menu {

        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 60px; /* Alinhe com a altura do header */
        left: 0;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {

        display: flex;
    }

    .nav-menu a {

        margin: 10px 20px;
        text-align: center;
    }

    .hamburger-menu {

        display: flex;
    }

    .hero-container {

        flex-direction: column;
        text-align: center;
    }

    .hero-text, .hero-image-box {

        width: 100%;
        padding: 0 20px;
    }
    
    .hero-text h1 {

        font-size: 2.5rem;
    }

    .hero-image-box {
        
        margin-top: 30px;
    }
}