/* RESET BÁSICO */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff; /* Fundo branco */
    color: #031a39;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

.text-success{
    color: #81c234 !important;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65), 
        rgba(0, 0, 0, 0.65)
    ), 
    url('../images/banner.png') no-repeat center center;
    background-size: cover;
    padding: 15% 0;
    text-align: center;
    color: #fff;
    z-index: 1;
}

/* Pseudo-elemento para borda inclinada inferior */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; /* altura da borda */
    background: linear-gradient(90deg, #81c234 0%, #81c234 55%, #81c234 55%, #81c234 100%);
    /* Cores verde e azul divididas no meio, ajusta a % para o efeito */
    
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 0);
    /* Inclina a borda (ajuste os valores para deixar igual a imagem) */
    z-index: 2;
}


.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-subtitle {
    color: #81c234;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

.hero p {
    font-size: 20px;
}

/* ===== SOBRE ===== */
.sobre {
    padding: 5% 18%;
    text-align: center;
}

.sobre p {
    max-width: 800px;
    margin: 0 auto;
}

/* ===== PRODUTOS ===== */
.produtos {
    padding: 50px 0;
}

.produtos-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

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

.produto-card img {
    max-width: 100%;
    border-radius: 8px;
}

/* ===== TIPOS DE BOMBAS ===== */
.tipos-bombas {
    background-color: #ffffff;
    padding: 50px 0;
}

.tipo-bomba-card {
    display: block;
    background-color: #81c234;
    color: white;
    text-align: center;
    padding: 30px 15px;
    height: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tipo-bomba-card:hover {
    background-color: #81c234;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tipo-bomba-titulo {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

/* Seção Produtos e Serviços */
.produtos-servicos {
    background-color: #ffffff;
    padding: 80px 0;
    color: #031a39;
}

.produtos-servicos h2 {
    color: #81c234;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.produtos-servicos p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Botões de navegação */
.nav-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
}

.nav-btn {
    background: linear-gradient(90deg, #81c234 0%, #81c234 50%, #031a39 50%, #031a39 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: #fff;
    border: 0px solid #031a39;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn:first-child {
    border-radius: 5px 0 0 5px;
}

.nav-btn:last-child {
    border-radius: 0 5px 5px 0;
}

.nav-btn:hover {
    background-position: 0% 0;
    color: white;
    border: 0px solid #81c234;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nav-btn.active {
    background: #81c234;
    background-position: 0% 0;
    border: 0px solid #81c234;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Conteúdo dinâmico */
#dynamic-content {
    min-height: auto;
}

.loading {
    text-align: center;
    padding: 50px;
    font-size: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

.product-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.product-item a {
    color: #031a39;
    text-decoration: none;
    display: block;
}

.product-image {
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.product-info {
    padding: 15px;
}

.product-info h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #81c234;
}

.product-info p {
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

.no-items,
.error {
    text-align: center;
    padding: 50px;
    font-size: 16px;
}

/* Seção Serviços e Peças */
.servicos-pecas {
    background-color: #ffffff;
    padding: 80px 0;
}

.info-card {
    background: #031a39;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card-full {
    background: #031a39;
    padding: 0;
    border-radius: 0px 35px 35px 0px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto;
    overflow: hidden;
}

.info-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
}

.info-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.info-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.info-card p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-image {
    text-align: center;
    padding: 0;
    height: 100%;
}

.info-image svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.card-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-green {
    background-color: #81c234;
    color: white;
}

.btn-green:hover {
    background-color: #81c234;
    color: white;
    text-decoration: none;
}

.btn-white {
    background-color: white;
    color: #031a39;
    border: 2px solid #031a39;
}

.btn-white:hover {
    background-color: #81c234;
    color: white;
    text-decoration: none;
}

.info-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.logo-image {
    max-width: 200px;
    opacity: 0.1;
}

/* Seção Contato Home */
.contato-home {
    background: linear-gradient(rgba(44, 90, 160, 0.65), rgba(44, 90, 160, 0.65)), url('../images/agricultura-irrigada.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    color: white;
    font-weight: bold;
    margin-bottom: 100px;
}

.contato-home p {
    font-size: 26px;
    margin-bottom: 30px;
}

.btn-contato {
    border: 2px solid #81c234;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-contato:hover {
    background-color: #81c234;
    color: white;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .produtos-servicos {
        padding: 60px 0;
    }
    
    .nav-buttons {
        flex-direction: column;
    }
    
    .nav-btn {
        border-radius: 5px !important;
        margin-bottom: 5px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .card-buttons {
        flex-direction: column;
    }
    
    .servicos-pecas {
        padding: 60px 0;
    }
    
    .info-card {
        padding: 30px;
        margin-bottom: 30px;
    }
}

/* ===== PÁGINA SOBRE (A FULANETO) ===== */
.hero-about {
    background: linear-gradient(
        rgba(0, 0, 0, 0.65), 
        rgba(0, 0, 0, 0.65)
    ), 
    url('../images/banner.png') no-repeat center center;
}

.historia {
    padding: 80px 0;
    background-color: #ffffff;
}

.historia h2 {
    font-size: 28px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.historia-texto {
    font-size: 16px;
    line-height: 1.6;
}

.ano-destaque {
    font-size: 72px;
    font-weight: bold;
    color: #81c234;
    text-align: center;
    line-height: 1;
}

.momento-card {
    border: 2px solid #81c234;
    overflow: hidden;
    height: 100%;
}

.momento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.momento-card:hover img {
    transform: scale(1.05);
}

.paginacao {
    margin-top: 30px;
}

.paginacao-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.paginacao-dot.active {
    background-color: #81c234;
}

/* ===== PÁGINA BOMBAS ===== */
.hero-bombas {
    background: linear-gradient(
        rgba(0, 0, 0, 0.65), 
        rgba(0, 0, 0, 0.65)
    ), 
    url('../images/banner.png') no-repeat center center;
}

.linhas-bombas {
    padding: 60px 0;
    background-color: #ffffff;
}

.bomba-card {
    position: relative;
    overflow: hidden;
    border: 2px solid #031a39;
    height: 100%;
    border-radius: 15px 15px 0px 0px;
    display: flex;
    flex-direction: column;
}

.bomba-header {
    background-color: #f1f1f1;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.bomba-image-container {
    flex: 1;
    overflow: hidden;
}

.bomba-image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bomba-card:hover .bomba-image-container img {
    transform: scale(1.05);
}

.bomba-info {
    background-color: #031a39;
    padding: 15px;
    text-align: center;
}

.bomba-linha {
    color: #031a39;
    font-size: 18px;
    font-weight: bold;
    margin: auto;
}

.category-icon {
    width: 20%;
    margin: auto;
}

/* Seção Missão, Visão e Valores */
.missao-visao-valores {
    background-color: #f1f1f1;
    color: #031a39;
    padding: 60px 0;
}

.missao-visao-valores h3 {
    color: #031a39;
    font-weight: bold;
    margin-bottom: 20px;
}

.missao-visao-valores .valores-texto,
.missao-visao-valores .missao-texto,
.missao-visao-valores .visao-texto {
    color: #031a39;
    text-align: justify;
    line-height: 1.6;
}

.btn-saiba-mais {
    display: inline-block;
    background-color: #81c234;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
    background-color: #ffffff;
    color: #031a39;
}

/* ===== PÁGINA DETALHES BOMBA ===== */
.detalhes-bomba {
    padding: 60px 0;
    background-color: #ffffff;
}

.bomba-imagem {
    border: 2px solid #81c234;
}

.bomba-titulo {
    color: #81c234;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.bomba-descricao {
    margin-bottom: 30px;
}

.bomba-especificacoes {
    background-color: rgba(129, 194, 52, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #81c234;
}

.bomba-especificacoes h3 {
    color: #81c234;
    font-size: 20px;
    margin-bottom: 15px;
}

.bomba-especificacoes ul {
    padding-left: 20px;
}

.bomba-especificacoes li {
    margin-bottom: 8px;
}

.btn-solicitar-orcamento {
    display: inline-block;
    background-color: #81c234;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-solicitar-orcamento:hover {
    background-color: #81c234;
    transform: translateY(-3px);
}

.componentes {
    padding: 60px 0;
    background-color: #ffffff;
}

.componente-card {
    background-color: white;
    padding: 20px;
    height: 100%;
    text-align: center;
}

.componente-card h3 {
    color: #81c234;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.componente-card p {
    color: #333;
}

/* ===== PÁGINA PEÇAS ===== */
.hero-pecas {
    background: linear-gradient(
        rgba(0, 0, 0, 0.65), 
        rgba(0, 0, 0, 0.65)
    ), 
    url('../images/banner.png') no-repeat center center;
}

/* ===== PÁGINA SERVIÇOS ===== */
.hero-servicos {
    background: linear-gradient(
        rgba(0, 0, 0, 0.65), 
        rgba(0, 0, 0, 0.65)
    ), 
    url('../images/banner.png') no-repeat center center;
}

/* ===== PÁGINA CONTATO ===== */
.hero-contato {
    background: linear-gradient(
        rgba(0, 0, 0, 0.65), 
        rgba(0, 0, 0, 0.65)
    ), 
    url('../images/banner.png') no-repeat center center;
}

.contato-form {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.info-contato {
    padding: 30px;
    height: 100%;
}

.info-contato h2 {
    color: #0c2340;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contato-subtitulo {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contato-item i {
    font-size: 24px;
    color: #0c2340;
    margin-right: 15px;
    margin-top: 5px;
}

.contato-item h4 {
    color: #0c2340;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.contato-item p {
    color: #555;
    margin-bottom: 0;
}

.redes-sociais h4 {
    color: #0c2340;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #0c2340;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #031a39;
}

.form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    color: #0c2340;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #0c2340;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
}

.form-control:focus {
    border-color: #0c2340;
    box-shadow: 0 0 0 0.2rem rgba(12, 35, 64, 0.25);
}

.btn-enviar {
    display: block;
    width: 100%;
    background-color: #0c2340;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-enviar:hover {
    background-color: #1f293d;
}

.mapa-section {
    margin-top: 60px;
}

.mapa-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.nossos-servicos {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.nossos-servicos h2 {
    color: #0c2340;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.servicos-subtitulo {
    color: #555;
    font-size: 18px;
    margin-bottom: 40px;
}

.servico-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.servico-icon {
    font-size: 40px;
    color: #0c2340;
    margin-bottom: 20px;
}

.servico-card h3 {
    color: #0c2340;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.servico-card p {
    color: #555;
    margin-bottom: 20px;
    min-height: 80px;
}

.btn-saiba-mais {
    display: inline-block;
    background-color: #81c234;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-saiba-mais:hover {
    background-color: #fff;
    color: #031a39;
    text-decoration: none;
}

.diferenciais {
    padding: 60px 0;
    background-color: #ffffff;
    color: #031a39;
}

.diferenciais h2 {
    color: #031a39;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.diferencial-item {
    text-align: center;
    padding: 20px;
    height: 100%;
}

.diferencial-icon {
    font-size: 40px;
    color: #031a39;
    margin-bottom: 20px;
}

.diferencial-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.diferencial-item p {
    font-size: 16px;
}

.pecas-disponiveis {
    padding: 60px 0;
    background-color: #ffffff;
}

.pecas-disponiveis h2 {
    color: #031a39;
    font-size: 28px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.peca-card {
    background-color: #031a39;
    color: white;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.peca-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.peca-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.peca-card

.peca-info {
    padding: 20px;
}

.peca-info h3 {
    color: #0c2340;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.peca-info p {
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.peca-info .btn-solicitar-orcamento {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.peca-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    background-color: #031a39; 
    color: white; 
    font-size: 0.85rem;
}

.peca-footer span {
    font-weight: 600;
    text-align: center;
}

.peca-header h3 {
    text-transform: uppercase;
}

/* ===== CONTATO ===== */
.contato {
    background-color: #ffffff;
    color: #031a39;
    padding: 50px 0;
    text-align: center;
}


/* ======== MENU PRINCIPAL ======== */
.site-header {
    background-color: #031a39;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1000;
    padding: 10px 0;
}

.site-logo {
    display: flex;
    align-items: center;
}

.main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-menu a {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
}

.main-menu a:hover {
    color: #81c234;
}

.main-menu a.active {
    color: #81c234;
    position: relative;
}

.main-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #81c234;
    border-radius: 2px;
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

/* ======== HAMBURGER MENU ======== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 10px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 992px) {
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        right: 0;
        text-align: right;
        background-color: #031a39;
        padding: 20px 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .site-logo img{
        height: 200px;
    }

    .main-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .main-menu a {
        font-size: 30px;
    }

    .main-menu a:hover {
        color: #81c234;
    }

    .main-menu a.active {
        color: #81c234;
        position: relative;
    }

    .main-menu a.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #81c234;
        border-radius: 2px;
    }

    .menu-toggle {
        display: flex;
        font-size: 30px;
    }

    .main-menu.active {
        display: block;
    }
}

/* ======== USER MENU DROPDOWN ======== */
.user-menu {
    position: relative;
}

.user-menu .dropdown {
    position: relative;
}

.user-menu .dropdown-toggle {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-menu .dropdown-toggle:hover {
    color: #81c234;
}

.user-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1f293d;
    border: 1px solid #81c234;
    border-radius: 5px;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

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

.user-menu .dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 15px;
    color: #ffffff;
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.user-menu .dropdown-item:hover {
    background-color: #81c234;
    color: #031a39;
}

.user-menu .dropdown-item i {
    margin-right: 8px;
}

/* Responsive adjustments for user menu */
@media (max-width: 992px) {
    .user-menu .dropdown-menu {
        position: static;
        display: block;
        background-color: transparent;
        border: none;
        box-shadow: none;
        margin-top: 0;
    }
    
    .user-menu .dropdown-toggle {
        font-size: 30px;
    }
    
    .user-menu .dropdown-item {
        font-size: 24px;
        padding: 15px 0;
    }
}

footer{
    padding: 50px 0px 25px 0px;
    background-color: #1f293d;
}

.rede-social{
    font-size: 30px;
    text-align: center;
}

.footer-contato{
    padding: 5% 15% 2% 15%;
    text-align: center;
}

.footer-mapa{
    padding: 5% 10% 2% 10%;
    text-align: center;
}

.footer-mapa h1{
    font-size: 20px;
    color: #81c234;
}

.footer-contato h1{
    font-size: 20px;
    color: #81c234;
}

.footer-contato p{
    font-size: 16px;
    color: #fff;
    line-height: 50%;
}

footer p{
    font-size: 16px;
    color: #fff;
    line-height: 16px;
}

@media (max-width: 1800px) {
    .footer-contato{
        padding: 5px 5px;
    }
    .footer-mapa{
        padding: 5px 10%;
    }
    .footer-contato p{
        font-size: 16px;
        color: #fff;
        line-height: 0.5;
    }
}

/* Categorias */

/* ===== Seção Aplicações ===== */
.aplicacoes-categoria {
    background-color: #ffffff !important;
}

.section-title {
    color: #031a39;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* ===== Cards base (Aplicação + Bomba) ===== */
.aplicacao-card, 
.bomba-detail-card {
    background: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.aplicacao-card:hover, 
.bomba-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* ===== Imagens ===== */
.aplicacao-card img, 
.bomba-detail-card .bomba-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.aplicacao-card img {
    height: 400px;
}

.bomba-detail-card .bomba-image img {
    height: 300px;
}

.no-image {
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ===== Infos Aplicações ===== */
.aplicacao-info {
    background-color: #031a39;
    padding: 20px;
    min-height: 100px;
}

.aplicacao-info h4 {
    color: #fff;
    margin: 0;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

/* ===== Infos Bombas ===== */
.bomba-detail-info {
    background-color: #031a39;
    padding: 20px;
}

.bomba-detail-info h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 32px;
    text-transform: uppercase;
}

/* ===== Botões Bombas ===== */
.bomba-actions {
    margin-top: 15px;
}

.bomba-actions .btn {
    background-color: #fff;
    color: #81c234;
    font-weight: 600;
    border: none;
    margin-right: 5px;
    margin-bottom: 5px;
}

.bomba-actions .btn:hover {
    background-color: #e9ecef;
}

/* ===== Links dentro da faixa verde (Bombas) ===== */
.bomba-actions {
    margin-top: 10px;
}

.bomba-actions a {
    color: #81c234;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 10px;
    border-right: 2px solid #81c234;
}

.bomba-actions a:last-child {
    border-right: none;
}

.bomba-actions a:hover {
    text-decoration: underline;
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    color: #fff;
}

