.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Reset de margens e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo da página */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background-color: #111; /* Cor escura e sóbria */
    color: #fff;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header .logo h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
}

header .logo p {
    font-size: 18px;
    font-weight: 300;
    margin-top: 5px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

header nav ul li {
    display: inline;
    margin: 0 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #f39c12; /* Laranja suave */
}

/* Seção de Ofertas */
#ofertas {
    padding: 60px 10%;
    background-color: #fff;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#ofertas h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.produtos {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.produto {
    background-color: #fff;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 48%;
    text-align: center;
    transition: transform 0.3s ease;
}

.produto:hover {
    transform: translateY(-10px);
}

.produto img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.produto h3 {
    font-size: 24px;
    margin-top: 15px;
    color: #333;
}

.produto p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
}

.produto a {
    text-decoration: none;
    color: #fff;
    background-color: #f39c12; /* Cor de destaque laranja */
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.produto a:hover {
    background-color: #e67e22;
}

/* Seção de Destaques */
#destaques {
    padding: 60px 10%;
    background-color: #f4f4f4;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 40px;
}

#destaques h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
}

.destaque {
    background-color: #fff;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.destaque h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.destaque p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
}

.destaque a {
    text-decoration: none;
    color: #fff;
    background-color: #f39c12; /* Laranja de destaque */
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.destaque a:hover {
    background-color: #e67e22;
}

/* Rodapé */
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    #ofertas {
        padding: 40px 5%;
    }

    .produtos {
        flex-direction: column;
        gap: 20px;
    }

    .produto {
        width: 100%;
    }

    #destaques {
        padding: 40px 5%;
    }
}/* End custom CSS */