/*
Theme Name: Woodev
Theme URI: https://www.devmulti.com.br
Author: Bruno
Author URI:https://devmulti.com.br/
Description: Um tema para ecommerce leve feito para Devmulti.
Version: 1.4 
Text Domain:
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, custom-menu, custom-logo, featured-images, footer-widgets, theme-options, translation-ready, blog, right-sidebar, sticky-post, threaded-comments
*/
:root {
    --primary-black: #010101;
    --primary-green: #004F00;
    --primary-red: #D01E00;
    --primary-white: #FFFFFF;
}
body {
    font-family: Inter,sans-serif!important
    font-size: 16px;
    line-height: 1.5;
    color: var(--primary-black);
    background-color: var(--primary-white);
	margin-top:15px;
    }

/* Header Styles */
.top-header {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 2px 0;
    font-size: 0.9rem;
}

.main-header {
    background: var(--primary-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding:5px;
}
.custom-logo {
    border-radius: 10px;
}

/* H1 h2 */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
  color: black;
}
/* A do link */
a {
    color: #D01E00;
    text-decoration: none;
}
a:hover {
    color: #000;
    text-decoration: none;
}
/* Logo */
.site-logo img {
    max-height: 60px;
    width: auto;
}
/* ion icon */
ion-icon {
    font-size: 25px;
    color: #000;    
    }

/* Search Container */
.search-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Header Icons */
.header-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

.header-icon {
    color: var(--primary-black);
    font-size: 20px;
    position: relative;
    transition: color 0.3s ease;
}

.header-icon:hover {
	color:#000;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-red);
    color: var(--primary-white);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 18px;
    text-align: center;
}

/* Navigation */
.main-navigation {
    background: var(--primary-green);
    padding: 0;
}
.nav {
    padding-left: 20px;
}

.navbar-nav .nav-link {
    color: var(--primary-white) !important;
    padding: 1rem !important;
    transition: background-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 10px;
    color: var(--primary-white);
}

/* Offcanvas Styles */
.offcanvas-header {
    background: var(--primary-green);
    color: var(--primary-white);
}

.offcanvas-body {
    padding: 0;
}

.mobile-search {
    padding: 15px;
    background: #f8f9fa;
}

/* Menu Items */
.btn-toggle {
    padding: 12px 15px;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.btn-toggle:hover {
    background-color: rgba(26,80,0,0.1);
}

.menu-icon {
    margin-right: 10px;
    width: 20px;
    color: var(--primary-green);
}

.btn-toggle-nav a {
    padding: 8px 15px 8px 45px;
    display: block;
    color: var(--primary-black);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-toggle-nav a:hover {
    background-color: rgba(26,80,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-icons {
        gap: 15px;
    }
    
    .header-icon {
        font-size: 18px;
    }
}
/* Footer Styles */
.footer-main {
    background: linear-gradient(0deg, var(--primary-black) 20%, var(--primary-green) 50%);
    padding: 4rem 0 2rem;
}

.footer-logo img {
    max-height: 80px;
    margin-bottom: 1rem;
	border-radius: 10px;
}

.footer-heading {
    color: var(--primary-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer-link {
    color: var(--primary-white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--primary-red) !important;
    transform: translateX(5px);
}

.footer-bottom {
    background-color: var(--primary-black);
    padding: 1rem 0;
    color: var(--primary-white);
}

.footer-security img,
.footer-payments img {
    max-width: 100%;
    height: auto;
    background: var(--primary-white);
    padding: 10px;
    border-radius: 8px;
}

.to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-green);
    color: var(--primary-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.to-top.active {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    background: var(--primary-red);
    color: var(--primary-white);
    transform: translateY(-3px);
}

/* Modal Customization */
.modal-header {
    background: var(--primary-green);
    color: var(--primary-white);
}

.modal-title {
    font-weight: 600;
}

.list-group-item {
    border-left: none;
    border-right: none;
}

.list-group-item b {
    color: var(--primary-green);
}
/* Adicione ao seu CSS */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background: var(--primary-white);
    border-radius: 8px;
}

.payment-icon {
    font-size: 32px;
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-3px);
}

.payment-icon.visa {
    color: #1A1F71;
}

.payment-icon.mastercard {
    color: #EB001B;
}

.payment-icon.amex {
    color: #006FCF;
}

.payment-icon.pix {
    color: #32BCAD;
}

.payment-icon.boleto {
    color: #00529E;
}

.payment-methods-title {
    font-size: 0.9rem;
    color: var(--primary-black);
    margin-bottom: 10px;
    text-align: center;
}
/* Adicione isso ao seu arquivo CSS existente */

.security-icons {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: var(--primary-white);
    border-radius: 8px;
}

.security-methods-title {
    font-size: 0.9rem;
    color: var(--primary-black);
    margin-bottom: 10px;
    text-align: center;
}

.security-icon {
    font-size: 32px;
    transition: all 0.3s ease;
}

.security-icon:hover {
    transform: translateY(-3px);
}

.security-icon.ssl {
    color: #00A000;
}

.security-icon.https {
    color: #007BFF;
}

.security-icon.secure {
    color: #FFD700;
}

.security-icons small,
.payment-icons small {
    font-size: 0.75rem;
    margin-top: 5px;
    color: var(--primary-black);
}
.woocommerce ul.products li.product a img {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product a img:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.header-icons {
    font-size: 0.9rem;
}

.header-icon-link {
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-icon-link:hover {
    background-color: rgba(26, 80, 0, 0.1);
}

.header-icon-link ion-icon {
    font-size: 24px;
}

.icon-green, 
.text-green {
    color: var(--primary-green);
}
/* Dropdown */
.dropdown-menu {
    padding: 8px;
    min-width: 200px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.125rem;
}

.dropdown-menu .dropdown-toggle::after {
    transform: rotate(-90deg);
}

.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
}

.dropdown-item:hover {
    background-color: rgba(26, 80, 0, 0.1);
}

.dropdown-item ion-icon {
    font-size: 20px;
    color:#000;
}

@media (max-width: 991px) {
    .header-icon-link ion-icon {
        font-size: 28px;
    }
}
/* Slider recuo para o TOPO */
/* Estilo padrão para mobile */
.carousel-container {
    margin-top: -5px; /* ou qualquer valor que você queira para mobile */
}

/* Estilo para tablets */
@media (min-width: 4478px) and (max-width: 991px) {
    .carousel-container {
        margin-top: -25px; /* Ajuste este valor conforme necessário para tablets */
    }
}

/* Estilo para desktops */
@media (min-width: 992px) {
    .carousel-container {
        margin-top: -35px; /* Ajuste este valor conforme necessário para desktops */
    }
}
/* Estilos para o Off-canvas Menu */
.custom-offcanvas {
    background-color: #ffffff;
    max-width: 320px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.custom-offcanvas .offcanvas-header {
    background-color: #ffffff;
    padding: 20px;
    position: relative;
}

.custom-offcanvas .offcanvas-logo img {
    max-height: 40px;
}

.custom-offcanvas .offcanvas-title {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.5rem;
}

.custom-offcanvas .btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.custom-offcanvas .offcanvas-body {
    padding: 30px 20px;
}

.custom-offcanvas .mobile-nav {
    margin-bottom: 40px;
}

.custom-offcanvas .mobile-nav ul {
    list-style: none;
    padding: 0;
}

.custom-offcanvas .mobile-nav li {
    margin-bottom: 15px;
}

.custom-offcanvas .mobile-nav a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-offcanvas .mobile-nav a:hover,
.custom-offcanvas .mobile-nav a:focus {
    background-color: #f0f8f0;
    color: #1A5000;
    transform: translateX(5px);
}

.custom-offcanvas .info-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.custom-offcanvas h5 {
    color: #1A5000;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.custom-offcanvas h5 ion-icon {
    margin-right: 10px;
    font-size: 1.4rem;
}

.custom-offcanvas .info-item {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 16px;
}

.custom-offcanvas .info-item ion-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.custom-offcanvas .social-icons {
    display: flex;
    gap: 15px;
}

.custom-offcanvas .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f3f5f3;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-offcanvas .social-icons a:hover {
    background-color: #8ead80;
    transform: translateY(-3px);
}

.custom-offcanvas .social-icons ion-icon {
    font-size: 20px;
}

/* Estilo para submenus */
.custom-offcanvas .dropdown-menu {
    background-color: transparent;
    border: none;
    padding-left: 20px;
}

.custom-offcanvas .dropdown-item {
    color: #333;
    padding: 8px 15px;
    font-size: 16px;
}

.custom-offcanvas .dropdown-item:hover,
.custom-offcanvas .dropdown-item:focus {
    background-color: #f0f8f0;
    color: #fcfdfb;
}

/* Animação de entrada do menu */
.custom-offcanvas.show {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
/* Estilos para o Modal de Busca */
#modalBusca .modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

#modalBusca .modal-header {
    background-color: #1A5000;
    border-bottom: none;
    padding: 20px;
}

#modalBusca .modal-title {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

#modalBusca .modal-title ion-icon {
    font-size: 1.5rem;
}

#modalBusca .btn-close {
    opacity: 1;
}

#modalBusca .modal-body {
    padding: 25px;
}

#modalBusca .text-muted {
    font-size: 0.9rem;
}

#modalBusca .btn-outline-success {
    border-color: #1A5000;
    color: #1A5000;
    transition: all 0.3s ease;
}

#modalBusca .btn-outline-success:hover {
    background-color: #1A5000;
    color: white;
}

#modalBusca .modal-footer {
    border-top: none;
    justify-content: center;
    padding: 15px;
}

/* Estilos para o campo de busca (ajuste conforme necessário para compatibilidade com fibosearch) */
#modalBusca .fibosearch-wrapper input[type="text"] {
    border: 2px solid #1A5000;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1rem;
    width: 100%;
}

#modalBusca .fibosearch-wrapper button[type="submit"] {
    background-color: #1A5000;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#modalBusca .fibosearch-wrapper button[type="submit"]:hover {
    background-color: #133d00;
}
/* Estilos para o Modal de Contato */
#modalContato .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#modalContato .modal-header {
    background-color: #1A5000;
    border-bottom: none;
    padding: 20px 25px;
}

#modalContato .modal-title {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

#modalContato .modal-title ion-icon {
    font-size: 1.5rem;
}

#modalContato .btn-close {
    opacity: 1;
}

#modalContato .modal-body {
    padding: 30px 25px;
}

#modalContato .contact-item h6 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

#modalContato .contact-item h6 ion-icon {
    font-size: 1.3rem;
}

#modalContato .btn-outline-success {
    border-color: #1A5000;
    color: #1A5000;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 12px;
}

#modalContato .btn-outline-success:hover {
    background-color: #1A5000;
    color: white;
}

#modalContato .modal-footer {
    border-top: none;
    justify-content: center;
    padding: 15px 25px;
    background-color: #f8f9fa;
}

#modalContato .modal-footer p {
    font-size: 0.9rem;
}
/* top header */
.top-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #e9ecef;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
}

.top-bar .contact-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar .contact-link:hover {
    color: #1A5000;
}

.top-bar .contact-link ion-icon {
    font-size: 1.2rem;
    margin-right: 6px;
}

.top-bar .social-icons {
    display: flex;
    align-items: center;
}

.top-bar .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #e9ecef;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
}

.top-bar .social-icon:hover {
    background-color: #1A5000;
    color: #fff;
}

.top-bar .social-icon ion-icon {
    font-size: 1rem;
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
}
/* Estilos para o botão de filtro mobile e offcanvas */
.filter-mobile .btn-filter {
    background-color: rgb(142, 74, 114);
    color: #fff;
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.filter-mobile .btn-filter:hover {
    background-color: rgb(122, 54, 94);
}

.filter-mobile .btn-filter i {
    font-size: 1.1em;
}

#filterOffcanvas {
    max-width: 300px;
}

#filterOffcanvas .offcanvas-header {
    background-color: rgb(142, 74, 114);
    color: #fff;
}

#filterOffcanvas .offcanvas-title {
    font-weight: 600;
}

#filterOffcanvas .btn-close {
    filter: brightness(0) invert(1);
}

#filterOffcanvas .offcanvas-body {
    padding: 1rem;
}

/* Estilos para o botão de filtro mobile e offcanvas */
.filter-mobile .btn-filter {
    background-color:var(--primary-green);
    color: #fff;
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.filter-mobile .btn-filter:hover {
    background-color: rgb(22, 22, 22);
}

.filter-mobile .btn-filter i {
    font-size: 1.1em;
}

#filterOffcanvas {
    max-width: 300px;
}

#filterOffcanvas .offcanvas-header {
    background-color: rgb(39, 38, 39);
    color: #fff;
}

#filterOffcanvas .offcanvas-title {
    font-weight: 600;
}

#filterOffcanvas .btn-close {
    filter: brightness(0) invert(1);
}

#filterOffcanvas .offcanvas-body {
    padding: 1rem;
}

/* Estilos para os filtros dentro do offcanvas */
#filterOffcanvas .wpf-filters-wrapper {
    margin-bottom: 1rem;
}

#filterOffcanvas .wpf-filter-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

#filterOffcanvas .wpf-filter {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

#filterOffcanvas .wpf-filter:last-child {
    border-bottom: none;
}

/* Responsividade */
@media (min-width: 768px) {
    .filter-mobile {
        display: none;
    }
}
/* Home Title Produtos em destaque */
.featured-products-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .title-decoration {
    width: 50px;
    height: 2px;
    background-color: #1A5000; /* Cor verde que você usa */
    margin: 0 15px;
  }
  
  .featured-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
  }
  
  /* Efeito hover */
  .featured-products-header:hover .title-decoration {
    width: 70px;
    transition: width 0.3s ease;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .featured-title {
      font-size: 2rem;
    }
    
    .title-decoration {
      width: 30px;
    }
    
    .featured-subtitle {
      font-size: 1rem;
    }
  }

  /* Grid -- Produtos Home */
  .custom-product-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px; /* Compensar o padding dos itens */
}

.custom-product-grid li.product {
    flex: 0 0 calc(25% - 30px); /* 25% para 4 colunas, subtraindo o gap */
    margin: 15px !important; /* !important para sobrescrever estilos WooCommerce */
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-product-grid li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.custom-product-grid li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    font-weight: 600;
    padding: 0 15px;
    margin-top: 15px;
}

.custom-product-grid li.product .price {
    padding: 0 15px;
    margin-top: auto; /* Empurra o preço para o fundo */
    font-weight: 600;
    color: #1A5000; /* Use sua cor primária aqui */
}

.custom-product-grid li.product .button {
    margin: 15px;
    width: calc(100% - 30px);
    text-align: center;
    background-color: #1A5000; /* Use sua cor primária aqui */
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

.custom-product-grid li.product .button:hover {
    background-color: #133d00; /* Uma versão mais escura da sua cor primária */
}

/* Responsividade */
@media (max-width: 991px) {
    .custom-product-grid li.product {
        flex: 0 0 calc(50% - 30px); /* 2 colunas em tablets */
    }
}

@media (max-width: 575px) {
    .custom-product-grid li.product {
        flex: 0 0 calc(100% - 30px); /* 1 coluna em dispositivos móveis */
    }
}
/* Estilos modernos para a página Quem Somos */

.about-us-page {
    color: #333;
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1A5000;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Missão e Visão */
.mission-vision {
    padding: 80px 0;
}

.mission-card, .vision-card {
    height: 100%;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.mission-card {
    background-color: #e8f5e9;
}

.vision-card {
    background-color: #e3f2fd;
}

.card-title {
    color: #1A5000;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Valores */
.our-values {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #1A5000;
    margin-bottom: 3rem;
}

.value-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #1A5000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: #1A5000;
    color: #fff;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #1A5000;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #1A5000;
    border-color: #1A5000;
    padding: 12px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #133d00;
    border-color: #133d00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}
/* cards features horizontal */
.feature-cards {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px; /* Adiciona padding à esquerda para alinhar o primeiro card */
    }

    .feature-cards > div {
        flex: 0 0 auto;
        width: 280px; /* Largura fixa para todos os cards */
        padding-right: 10px;
        padding-left: 10px;
    }

    .card {
        height: 100%;
        transition: all 0.3s ease;
    }
    
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }
    
    .card-body {
        display: flex;
        align-items: flex-start; /* Alinha o conteúdo à esquerda */
        padding: 1rem;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
        background-color: rgba(25, 135, 84, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 1rem;
    }
    
    .icon-wrapper i {
        color: #198754 !important; /* Verde escuro */
        font-size: 1.25rem;
    }
    
    .card-title {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.25rem;
    }
    
    .card-text {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0;
    }
    
    /* Ajustes responsivos */
    @media (min-width: 992px) {
        .feature-cards {
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .feature-cards > div {
            flex: 0 0 25%;
            max-width: 25%;
        }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        .feature-cards > div {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 767.98px) {
        .feature-cards > div {
            width: 85%;
        }
    }

    @media (max-width: 575.98px) {
        .icon-wrapper {
            width: 40px;
            height: 40px;
			margin-left: 50px;
        }
        
        .icon-wrapper i {
            font-size: 1.25rem !important;
        }
        
        .card-title {
            font-size: 1.10rem;
        }
        
        .card-text {
            font-size: 0.85rem;
        }

        .feature-cards > div {
            width: 90%;
        }
    }
