/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #ffffff; /* Tom de azul da logo */
    color: #003366;
    padding: 10px 0;
    border-bottom: 5px solid #001a33;
    position: relative;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Header Left - Logo e Busca */
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

header .logo img {
    height: 90px;
    width: auto;
}

/* Search Container */
.search-container {
    display: flex;
    align-items: center;
    background-color: #afadc1b1;
    border-radius: 25px;
    padding: 5px 15px;
    min-width: 250px;
    max-width: 400px;
    flex: 1;
}

.search-container input {
    border: none;
    outline: none;
    padding: 8px 10px;
    font-size: 14px;
    flex: 1;
    background: transparent;
    color: #333;
}

.search-container input::placeholder {
    color: #666;
}

.search-container button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #13d1e2;
    padding: 5px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: #38c3c3;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
    display: block;
}

.main-nav ul li a:hover {
    color: #2951d4; /* Um amarelo/dourado para destaque */
    background-color: rgba(255, 22, 119, 0.1);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff; /* Fundo branco para melhor visibilidade */
    color: #333; /* Texto escuro para contraste */
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    border: 1px solid #ddd; /* Borda sutil */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid #eee; /* Borda mais sutil */
    color: #333; /* Texto escuro */
    font-weight: normal; /* Peso normal da fonte */
    background-color: transparent;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: #72a9c7; /* Fundo cinza claro no hover */
    color: #003366; /* Cor azul da marca no hover */
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
}

.header-contact a {
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.header-contact a:hover {
    background-color: #1da851;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #1c105b;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.984);
}

/* Hero Section */
#hero {
    background-color: #004080; /* Um azul um pouco mais claro */
    color: #fff;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 30px;
}

#hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25d366; /* Verde WhatsApp */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

/* Featured Products */
#featured-products {
    padding: 40px 0;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#featured-products h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #003366;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    max-width: 100%;
    height: 200px; /* Altura fixa para as imagens dos produtos */
    object-fit: contain; /* Garante que a imagem se ajuste sem cortar */
    margin-bottom: 15px;
    border-radius: 5px;
}

.product-item h3 {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 0.95em;
    color: #fdfcfc;
    margin-bottom: 20px;
}

/* Botões dos produtos */
.btn-product, .btn-whatsapp-small {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 5px;
    font-size: 0.9em;
}

.btn-product {
    background-color: #0056b3; /* Azul padrão para botões */
    color: #fff;
}

.btn-product:hover {
    background-color: #004080;
    transform: translateY(-2px);
}

.btn-whatsapp-small {
    background-color: #25d366; /* Verde WhatsApp */
    color: #fff;
}

.btn-whatsapp-small:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

.btn-details {
    display: inline-block;
    background-color: #0056b3; /* Azul padrão para botões */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-details:hover {
    background-color: #004080;
}

/* WhatsApp Floating Button */
#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

#whatsapp-float img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #003366;
    color: #fff;
    padding: 50px 0 20px;
    text-align: center;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer .footer-column {
    display: flex;
    flex-direction: column;
}

footer h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

footer ul li a:hover {
    color: #ffd700;
    padding-left: 5px;
}

footer .social-media ul {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

footer .social-media ul li {
    margin-bottom: 0;
}

footer .social-media img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

footer .footer-logo {
    text-align: center;
    margin-top: 20px;
}

footer .footer-logo img {
    max-width: 120px;
    height: auto;
}

footer .developed-by {
    margin-top: 20px;
}

footer .developed-by p {
    font-size: 0.9em;
    margin: 5px 0;
    color: #ccc;
}

footer .developed-by a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

footer .developed-by a:hover {
    text-decoration: underline;
}

.btn-google-review {
    display: inline-block;
    background-color: #db4437; /* Vermelho Google */
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-size: 0.9em;
}

.btn-google-review:hover {
    background-color: #c23321;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #004080;
    font-size: 0.9em;
    text-align: center;
    color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
    /* Header Mobile */
    header .container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .header-left {
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .search-container {
        min-width: 200px;
        max-width: 250px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        background-color: rgba(0, 51, 102, 0.95);
        border-radius: 8px;
        padding: 10px 0;
        margin-top: 10px;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .main-nav ul li a {
        padding: 15px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav ul li:last-child a {
        border-bottom: none;
    }
    
    /* Dropdown no mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #3f19bc; /* Fundo branco no mobile também */
        color: #f5079a; /* Texto escuro no mobile */
        border: 1px solid #2c08ad;
        margin-left: 20px;
        border-radius: 5px;
        margin-top: 5px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        color: #02cff8 !important; /* Forçar texto escuro no mobile */
        border-bottom: 1px solid #eee !important;
    }
    
    .dropdown-menu li a:hover {
        background-color: #054381 !important;
        color: #f8f8f8 !important;
    }
    
    .header-contact {
        order: 2;
        justify-content: center;
        margin-top: 10px;
    }

    #hero {
        padding: 50px 20px;
    }

    #hero h1 {
        font-size: 2em;
    }

    #hero p {
        font-size: 1em;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
    }
    
    footer .footer-column {
        align-items: center;
    }
    
    footer .social-media ul {
        justify-content: center;
    }
    
    footer .footer-logo {
        order: -1; /* Logo aparece primeiro no mobile */
    }

    footer .footer-links,
    footer .social-media,
    footer .developed-by {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
    }

    footer .social-media ul {
        justify-content: center;
    }
}




/* Estilos específicos para páginas de bairros */

/* Breadcrumbs */
#breadcrumbs {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

#breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

#breadcrumbs ol li {
    margin-right: 10px;
    font-size: 0.9em;
}

#breadcrumbs ol li:not(:last-child)::after {
    content: ">";
    margin-left: 10px;
    color: #6c757d;
}

#breadcrumbs ol li a {
    color: #0056b3;
    text-decoration: none;
}

#breadcrumbs ol li a:hover {
    text-decoration: underline;
}

#breadcrumbs ol li[aria-current="page"] {
    color: #6c757d;
    font-weight: bold;
}

/* Hero section para bairros */
#bairro-hero {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 40px;
}

#bairro-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

#bairro-hero p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Seções de produtos por bairro */
#produtos-centro,
#produtos-jardim-botanico,
[id^="produtos-"] {
    padding: 50px 0;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

[id^="produtos-"] h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #003366;
}

[id^="produtos-"] > .container > p {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Informações de entrega */
#entrega-centro,
#entrega-jardim-botanico,
[id^="entrega-"] {
    padding: 50px 0;
    background-color: #f8f9fa;
    margin-bottom: 30px;
    border-radius: 8px;
}

[id^="entrega-"] h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #003366;
}

.entrega-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.entrega-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-top: 4px solid #0056b3;
}

.entrega-item h3 {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 15px;
}

.entrega-item p {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95em;
}

/* Grid de bairros próximos */
#bairros-proximos {
    padding: 50px 0;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#bairros-proximos h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #003366;
}

.bairros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.bairro-link {
    display: block;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.bairro-link:hover {
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
}

.bairro-link h3 {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
}

.bairro-link p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

/* Responsividade para páginas de bairros */
@media (max-width: 768px) {
    #bairro-hero {
        padding: 40px 20px;
    }
    
    #bairro-hero h1 {
        font-size: 1.8em;
    }
    
    #bairro-hero p {
        font-size: 1em;
    }
    
    .entrega-info {
        grid-template-columns: 1fr;
    }
    
    .bairros-grid {
        grid-template-columns: 1fr;
    }
    
    #breadcrumbs ol {
        flex-wrap: wrap;
    }
    
    #breadcrumbs ol li {
        margin-bottom: 5px;
    }
}

/* Estilos para botões específicos de bairros */
.btn-whatsapp {
    font-size: 1.1em;
    padding: 15px 30px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}

/* Melhorias visuais para produtos */
.product-item {
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* Estilos para páginas de categorias */

#categoria-hero {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 40px;
}

#categoria-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

#categoria-hero p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Subcategorias */
.subcategorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.subcategoria-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.subcategoria-item:hover {
    transform: translateY(-5px);
}

.subcategoria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.subcategoria-item h3 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.subcategoria-item p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.subcategoria-item ul {
    text-align: left;
    margin-bottom: 25px;
    padding-left: 20px;
}

.subcategoria-item ul li {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9em;
}

/* Vantagens */
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.vantagem-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid #0056b3;
}

.vantagem-item h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.vantagem-item p {
    color: #555;
    line-height: 1.5;
}

/* Bairros atendidos */
.bairros-atendidos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.bairros-atendidos a {
    background-color: #0056b3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.bairros-atendidos a:hover {
    background-color: #004080;
    text-decoration: none;
}

/* Estilos para páginas de produtos */

#produto-detalhes {
    padding: 40px 0;
    background-color: #fff;
}

.produto-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.produto-imagens .imagem-principal {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.imagens-secundarias {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.imagens-secundarias img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.imagens-secundarias img:hover {
    border-color: #0056b3;
}

.produto-info h1 {
    font-size: 2.2em;
    color: #003366;
    margin-bottom: 15px;
}

.produto-marca,
.produto-codigo {
    margin-bottom: 10px;
    color: #666;
}

.produto-caracteristicas {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.produto-caracteristicas h3 {
    color: #003366;
    margin-bottom: 15px;
}

.produto-caracteristicas ul {
    list-style: none;
    padding: 0;
}

.produto-caracteristicas ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.produto-caracteristicas ul li:last-child {
    border-bottom: none;
}

.produto-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-whatsapp-produto {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    margin-bottom: 15px;
}

.btn-whatsapp-produto:hover {
    background-color: #1da851;
    text-decoration: none;
}

.entrega-info {
    color: #666;
    font-size: 0.9em;
}

/* Seções de descrição e aplicação */
#produto-descricao,
#produto-aplicacao {
    padding: 50px 0;
    background-color: #f8f9fa;
}

#produto-descricao h2,
#produto-aplicacao h2 {
    color: #003366;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2em;
}

.descricao-conteudo {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.descricao-conteudo h3 {
    color: #003366;
    margin: 30px 0 15px;
    font-size: 1.4em;
}

.descricao-conteudo ul {
    margin-bottom: 25px;
}

.descricao-conteudo ul li {
    margin-bottom: 8px;
}

/* Steps de aplicação */
.aplicacao-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #0056b3;
}

.step h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.step p {
    color: #555;
    line-height: 1.5;
}

/* Produtos relacionados */
#produtos-relacionados {
    padding: 50px 0;
    background-color: #fff;
}

#produtos-relacionados h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 40px;
    font-size: 2em;
}

.produtos-relacionados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.produto-relacionado {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.produto-relacionado:hover {
    transform: translateY(-5px);
}

.produto-relacionado img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 5px;
}

.produto-relacionado h3 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.produto-relacionado p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9em;
}

/* Entrega do produto */
#entrega-produto {
    padding: 50px 0;
    background-color: #f8f9fa;
}

#entrega-produto h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 40px;
    font-size: 2em;
}

.entrega-detalhes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Responsividade para produtos */
@media (max-width: 768px) {
    .produto-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .imagens-secundarias {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .produto-info h1 {
        font-size: 1.8em;
    }
    
    .aplicacao-steps {
        grid-template-columns: 1fr;
    }
    
    .subcategorias-grid {
        grid-template-columns: 1fr;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .bairros-atendidos {
        justify-content: flex-start;
    }
}


/* Estilos para recursos avançados */

/* WhatsApp Float Button */
#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    transition: all 0.3s ease;
}

#whatsapp-float a {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

#whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

#whatsapp-float img {
    width: 35px;
    height: 35px;
    margin-top: 12px;
}

#whatsapp-float.pulse {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Menu responsivo */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #003366;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Animações de scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Slider de produtos */
.produtos-destaque-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 40px;
}

.produto-destaque {
    display: none;
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #fff;
    padding: 40px;
    text-align: center;
    min-height: 300px;
}

.produto-destaque.active {
    display: block;
}

.produto-destaque h3 {
    font-size: 2em;
    margin-bottom: 15px;
}

.produto-destaque p {
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #003366;
    transition: all 0.3s ease;
}

.slider-controls:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Lazy loading */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Formulário de contato melhorado */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #003366;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.btn-submit {
    background-color: #0056b3;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #004080;
}

/* Calculadora de tinta */
.calculadora-tinta {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid #e9ecef;
}

.calculadora-tinta h3 {
    color: #003366;
    margin-bottom: 20px;
    text-align: center;
}

.calc-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.calc-input-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.btn-calcular {
    background-color: #25d366;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-bottom: 20px;
}

.btn-calcular:hover {
    background-color: #1da851;
}

#resultado-calculo,
#sugestoes-produtos {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #0056b3;
    margin-top: 15px;
}

/* Melhorias visuais gerais */
.btn-details {
    display: inline-block;
    background-color: #0056b3;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-align: center;
}

.btn-details:hover {
    background-color: #004080;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

/* Efeitos de hover melhorados */
.product-item,
.subcategoria-item,
.produto-relacionado {
    transition: all 0.3s ease;
}

.product-item:hover,
.subcategoria-item:hover,
.produto-relacionado:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsividade para recursos avançados */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px 0;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    
    .slider-controls {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .calc-input-group {
        grid-template-columns: 1fr;
    }
    
    #whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    #whatsapp-float a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    
    #whatsapp-float img {
        width: 28px;
        height: 28px;
        margin-top: 11px;
    }
}

/* Melhorias de performance */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Preload crítico */
.preload {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preload.hidden {
    display: none;
}

/* Otimizações de scroll */
html {
    scroll-behavior: smooth;
}

/* Acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states melhorados */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    #whatsapp-float,
    .slider-controls,
    .nav-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}



/* Banner Slider Styles */
/* Banner Slider */
#banner-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    background: rgba(0, 51, 102, 0.8);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 20px;
}

.slide-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2em;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-slider {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-shadow: none;
}

.btn-slider:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: #fff;
}

/* Controles do Slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #003366;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Indicadores */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #fff;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background-color: #fff;
    transform: scale(1.2);
}

/* Banner Slider */
#banner-slider {
    position: relative;
    width: 100%;
    height: 500px; /* Altura mais fina como solicitado */
    overflow: hidden;
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    background: rgba(0, 51, 102, 0.8);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 20px;
}

.slide-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2em;
    margin-bottom: 25px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-slider {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-slider:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Controles do Slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 51, 102, 0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(0, 51, 102, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Indicadores */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background-color: #fff;
    transform: scale(1.2);
}

/* Hero Secondary (antiga seção hero) */
#hero-secondary {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #fff;
    padding: 40px 0; /* Reduzido de 60px para 40px */
    text-align: center;
}

#hero-secondary h1 {
    font-size: 2.2em; /* Reduzido de 2.5em para 2.2em */
    margin-bottom: 15px; /* Reduzido de 20px para 15px */
    font-weight: bold;
}

#hero-secondary p {
    font-size: 1.1em; /* Reduzido de 1.2em para 1.1em */
    margin-bottom: 25px; /* Reduzido de 30px para 25px */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividade do Slider */
@media (max-width: 768px) {
    #banner-slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .slide-content h2 {
        font-size: 2em;
    }
    
    .slide-content p {
        font-size: 1em;
    }
    
    .btn-slider {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    #hero-secondary {
        padding: 30px 0; /* Reduzido para mobile */
    }
    
    #hero-secondary h1 {
        font-size: 1.8em; /* Reduzido de 2em para 1.8em */
    }

    #hero-secondary p {
        font-size: 1em; /* Mantido em 1em */
    }
}

@media (max-width: 480px) {
    #banner-slider {
        height: 350px;
    }
    
    .slide-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .slide-content h2 {
        font-size: 1.8em;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
    
    .btn-slider {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}



/* ===== NOVAS FUNCIONALIDADES ===== */

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 5px;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #003366;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
}

/* Seção de Destaques */
.info-highlights {
    background: #f8f9fa;
    padding: 60px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    margin-bottom: 20px;
}

.highlight-icon img {
    width: 64px;
    height: 64px;
}

.highlight-content h3 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 18px;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
}

/* Página de Produtos */
.page-hero {
    background: linear-gradient(135deg, #003366, #0056b3);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.breadcrumbs {
    background: #f8f9fa;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumbs a {
    color: #003366;
    text-decoration: none;
}

.breadcrumbs span {
    color: #666;
}

.product-filters {
    padding: 40px 0;
    background: white;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.filter-btn {
    background: #f8f9fa;
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #003366;
    color: white;
    border-color: #003366;
}

.products-catalog {
    padding: 60px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: #003366;
    margin-bottom: 5px;
    font-size: 18px;
}

.product-brand {
    color: #0056b3;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-sizes {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.product-sizes span {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
}

.btn-product {
    background: #003366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.btn-product:hover {
    background: #0056b3;
}

.btn-whatsapp-small {
    background: #25d366;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-whatsapp-small:hover {
    background: #1da851;
}

/* Mosaico Clicável */
.mosaic-section {
    padding: 80px 0;
    background: white;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 15px;
    margin-top: 40px;
}

.mosaic-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.mosaic-item:hover {
    transform: scale(1.05);
}

.mosaic-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item.wide {
    grid-column: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
}

.mosaic-overlay h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.mosaic-overlay p {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.mosaic-cta {
    background: #003366;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Barra de Marcas */
.brands-bar {
    background: #f8f9fa;
    padding: 60px 0;
    overflow: hidden;
}

.brands-slider {
    overflow: hidden;
    margin-top: 40px;
}

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.brand-item {
    flex: 0 0 150px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 120px;
    max-height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #003366;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #003366;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 0 0 0;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 0 20px 0;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Página Sobre Nós */
.nossa-historia {
    padding: 80px 0;
    background: white;
}

.historia-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.historia-text h2 {
    color: #003366;
    margin-bottom: 30px;
    font-size: 2rem;
}

.historia-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.historia-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nossos-valores {
    padding: 80px 0;
    background: #f8f9fa;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.valor-item {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.valor-icon {
    margin-bottom: 20px;
}

.valor-icon img {
    width: 64px;
    height: 64px;
}

.valor-item h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 20px;
}

.valor-item p {
    color: #666;
    line-height: 1.6;
}

.marcas-parceiras {
    padding: 80px 0;
    background: white;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.marca-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s;
}

.marca-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.marca-item img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.marca-item h4 {
    color: #003366;
    margin-bottom: 10px;
}

.marca-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Avaliações Google */
.avaliacoes-google {
    padding: 80px 0;
    background: #f8f9fa;
}

.google-reviews {
    margin-top: 40px;
}

.review-header {
    text-align: center;
    margin-bottom: 40px;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.google-rating img {
    width: 40px;
    height: 40px;
}

.rating-stars {
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 20px;
    display: block;
}

.rating-number {
    font-size: 24px;
    font-weight: bold;
    color: #003366;
    display: block;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 15px;
}

.review-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.review-author strong {
    color: #003366;
    display: block;
    margin-bottom: 5px;
}

.review-author span {
    color: #999;
    font-size: 14px;
}

.review-cta {
    text-align: center;
}

.btn-google-review {
    background: #4285f4;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-google-review:hover {
    background: #3367d6;
}

/* Localização */
.nossa-localizacao {
    padding: 80px 0;
    background: white;
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.localizacao-info h3 {
    color: #003366;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.endereco, .horarios, .contatos {
    margin-bottom: 30px;
}

.endereco h4, .horarios h4, .contatos h4 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 18px;
}

.endereco p, .horarios p, .contatos p {
    color: #666;
    line-height: 1.6;
}

.mapa iframe {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #003366, #0056b3);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mosaic-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(6, 150px);
    }
    
    .mosaic-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .mosaic-item.wide {
        grid-column: span 2;
    }
    
    .historia-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .marcas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    
    .mosaic-item.large,
    .mosaic-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .brands-track {
        animation-duration: 20s;
    }
    
    .brand-item {
        flex: 0 0 100px;
        margin: 0 10px;
    }
    
    .brand-item img {
        max-width: 80px;
        max-height: 40px;
    }
}



/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    padding: 5px 15px;
    margin-left: 20px;
}

.search-bar input {
    border: none;
    outline: none;
    padding: 8px;
    border-radius: 25px;
    flex-grow: 1;
    font-size: 1em;
}

.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    color: #003366;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .search-bar {
        width: 90%;
        margin: 15px auto 0;
    }
    header nav ul {
        display: none; /* Hide regular menu on mobile */
    }
    .menu-toggle {
        display: block; /* Show hamburger icon */
    }
}



/* Hamburger Menu */
.menu-toggle {
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    header nav ul.main-menu {
        display: none; /* Hide regular menu on mobile */
        flex-direction: column;
        width: 100%;
        background-color: #003366;
        position: absolute;
        top: 80px; /* Adjust based on header height */
        left: 0;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        z-index: 1000;
    }

    header nav ul.main-menu.open {
        display: flex;
    }

    header nav ul.main-menu li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex; /* Show hamburger icon */
    }

    .search-bar {
        order: 1; /* Place search bar above menu on mobile */
        width: 100%;
        margin: 15px 0;
    }

    header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
}



/* Product Buttons */
.product-item .btn-product,
.product-item .btn-whatsapp-small {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.product-item .btn-product {
    background-color: #0056b3; /* Azul padrão para botões */
    color: #fff;
}

.product-item .btn-product:hover {
    background-color: #004080;
}

.product-item .btn-whatsapp-small {
    background-color: #25d366; /* Verde WhatsApp */
    color: #fff;
}

.product-item .btn-whatsapp-small:hover {
    background-color: #1da851;
}

/* Footer */
footer .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: left;
}

footer .footer-column {
    flex: 1;
    min-width: 200px;
    margin: 0 15px 30px 15px;
}

footer .footer-logo img {
    max-width: 150px;
    margin-top: 20px;
}

.btn-google-review {
    display: inline-block;
    background-color: #db4437; /* Vermelho Google */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-google-review:hover {
    background-color: #c23321;
}

@media (max-width: 768px) {
    footer .footer-column {
        text-align: center;
        margin: 0 0 30px 0;
    }
    footer .footer-logo {
        text-align: center;
    }
}




/* Isa.AI Chatbot */
#isa-ai-chat-bubble {
    position: fixed;
    bottom: 20px; /* Mesmo nível do WhatsApp */
    left: 20px; /* Movido para a esquerda */
    width: 70px;
    height: 70px;
    background-color: #003366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.3s ease;
}

#isa-ai-chat-bubble:hover {
    transform: scale(1.05);
}

#isa-ai-chat-bubble img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    bottom: 5px;
    right: 5px;
    border: 2px solid #fff;
}

.status-indicator.online {
    background-color: #25d366; /* Verde online */
}

#isa-ai-chat-window {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    left: 20px; /* Movido para a esquerda */
    width: 350px;
    height: 500px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background-color: #003366;
    color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.2em;
    flex-grow: 1;
}

.chat-header .status-indicator {
    position: static;
    margin-left: 10px;
}

.chat-header .close-chat {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8em;
    cursor: pointer;
}

.chat-body {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.chat-body .welcome-message {
    text-align: center;
    margin-bottom: 15px;
    color: #555;
}

#typebot-iframe {
    border: none;
    width: 100%;
    height: 100%;
}

@media (max-width: 400px) {
    #isa-ai-chat-window {
        width: 95%;
        height: 80%;
        bottom: 10px;
        left: 2.5%; /* Centralizado na tela pequena */
    }
    #isa-ai-chat-bubble {
        bottom: 20px;
        left: 20px; /* Mantém na esquerda */
    }
}

