/*
Theme Name: Covel Consórcio
Theme URI: https://covel.eco.br
Author: Augusto Sumac
Author URI: mailto:augustosumac@gmail.com
Description: Tema de consórcio para Covel. Desenvolvido por Augusto Sumac.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: covel-consorcio-theme
Tags: consorcio, financial, modern
*/

:root {
    /* Paleta profissional – motos elétricas (base: logo #316ef9) */
    --primary-color: #316ef9;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary-color: #2563eb;
    --accent-teal: #06b6d4;
    --accent-green: #10b981;
    --light-bg: #f0f9ff;
    --card-bg: #ffffff;
    --surface-alt: #f8fafc;
    --lime-green: #34d399;
    --dark-green: #059669;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border-light: #e2e8f0;

    /* Tipografia */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    font-family: var(--font-body);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.product-hero-title,
.model-name,
.feature-title,
.location-title,
.testimonial-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.hero-title,
.product-hero-title {
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-subtitle,
.product-hero-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
}

.model-name {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature-title,
.location-title {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
}

p,
.product-short-description,
.product-description {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.75;
    color: #4B5563;
}

.lead {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #374151;
}

.hero-section {
    background: #1a1a2e;
    padding: 55px 0 40px;
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    /* Cria contexto de empilhamento */
}

/* Background com zoom eterno sublime */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% center;
    transform-origin: center left;
    -webkit-animation: hero-zoom-sublime 10s ease-in-out infinite alternate;
    animation: hero-zoom-sublime 10s ease-in-out infinite alternate;
    will-change: transform;
}

@-webkit-keyframes hero-zoom-sublime {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.22);
        transform: scale(1.22);
    }
}

@keyframes hero-zoom-sublime {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.22);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(49, 110, 249, 0.4),
        0 0 60px rgba(49, 110, 249, 0.2);
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow:
        1px 1px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
}

.badge-green {
    background: linear-gradient(90deg, var(--accent-teal), var(--primary-color));
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(49, 110, 249, 0.2);
    animation: fadeInUp 0.6s ease-out;
    text-shadow: none;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 11px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.top-bar-icon {
    margin-right: 8px;
    font-size: 1.05em;
    vertical-align: middle;
    opacity: 0.9;
}

.top-bar-brand {
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.top-bar-sep {
    margin: 0 10px;
    opacity: 0.75;
    font-weight: 400;
}

.top-bar-tagline {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

.btn-primary-custom {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s;
    box-shadow:
        0 4px 15px rgba(49, 110, 249, 0.4),
        0 0 20px rgba(49, 110, 249, 0.2);
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1.2s ease-out;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(49, 110, 249, 0.5),
        0 0 30px rgba(49, 110, 249, 0.3);
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1.2s ease-out;
    box-shadow: 0 0 15px rgba(49, 110, 249, 0.2);
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow:
        0 0 25px rgba(49, 110, 249, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* WhatsApp Button in Hero Section */
.btn-whatsapp-hero {
    background-color: #25D366;
    /* Cor oficial do WhatsApp */
    border: 2px solid #25D366;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1.2s ease-out;
    box-shadow:
        0 4px 15px rgba(37, 211, 102, 0.4),
        0 0 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-hero:hover {
    background-color: #20BA5A;
    /* Verde mais escuro no hover */
    border-color: #20BA5A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(32, 186, 90, 0.5),
        0 0 30px rgba(32, 186, 90, 0.3);
}

.btn-whatsapp-hero i {
    margin-right: 8px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border: 2px solid #DBEAFE;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(49, 110, 249, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    min-height: 2.6em;
}

.model-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.model-card:hover {
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.1);
    transform: translateY(-4px);
    border-color: rgba(49, 110, 249, 0.25);
}

.model-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.model-info {
    padding: 1.25rem 1.25rem 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
}

.model-info .d-flex.gap-2 {
    margin-top: auto;
    padding-top: 1rem;
}

.model-image {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.25rem 0.75rem;
    overflow: hidden;
    min-height: 200px;
    max-height: 220px;
    border-bottom: 1px solid #e2e8f0;
}

.model-image a {
    display: block;
    width: 100%;
}

.model-image img.product-thumbnail,
.model-image img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
}

.model-image:hover img {
    transform: scale(1.03);
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: #fff;
    border: 1px dashed #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.4;
}

.product-price-wrapper {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    padding: 0.5rem 0;
    margin: 0.25rem 0 0.5rem;
    border: none;
}

.product-price-current {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.product-price-old {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
    order: -1;
}

.product-brand {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.product-header-info {
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.product-categories {
    font-size: 0.9rem;
    color: #888;
}

.product-categories a {
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 5px;
}

.product-categories a:hover {
    text-decoration: underline;
}

.product-short-description {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.75;
    font-family: var(--font-body);
    font-weight: 400;
}

.product-description {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.75;
    font-family: var(--font-body);
    font-weight: 400;
}

.model-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.3;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    min-height: 2.6em;
}

.model-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.model-name a:hover {
    color: var(--primary-color);
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
}

.specs-list li {
    padding: 0.25rem 0;
    color: #64748b;
    font-size: 0.8125rem;
}

.specs-list li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.location-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    height: 100%;
    border: 2px solid #DBEAFE;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.location-card:hover {
    box-shadow: 0 8px 25px rgba(49, 110, 249, 0.15);
    border-color: var(--primary-color);
}

.location-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.map-placeholder {
    background: linear-gradient(135deg, #EFF6FF, #F0F9FF);
    border-radius: 10px;
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 2px solid #DBEAFE;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 2px solid #DBEAFE;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(49, 110, 249, 0.15);
}

.testimonial-card p {
    color: #555;
    margin-bottom: 0;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #DBEAFE;
    flex-shrink: 0;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 80px 0;
}

/* Contact Section - fundo harmonizado com o tema */
.contact-section-bg {
    background: linear-gradient(180deg, #eef2ff 0%, #e0e7ff 50%, #c7d2fe 100%);
}

.faq-section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #1e3a8a;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
}

.faq-section .accordion {
    --bs-accordion-border-color: rgba(30, 64, 175, 0.2);
    --bs-accordion-btn-focus-border-color: var(--primary-color);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(49, 110, 249, 0.25);
}

.faq-section .accordion-item {
    background-color: #fff;
    border: 1px solid rgba(30, 64, 175, 0.15);
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(30, 64, 175, 0.08);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-section .accordion-item:hover {
    border-color: rgba(30, 64, 175, 0.25);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.12);
}

.faq-section .accordion-button {
    background-color: #fff;
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.faq-section .accordion-button:hover {
    background-color: #f8fafc;
    color: #1e40af;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-section .accordion-button::after {
    filter: brightness(0) invert(0.4);
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
    background-color: #fff;
    color: #475569;
    padding: 1.25rem 1.25rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    border-top: 1px solid rgba(30, 64, 175, 0.08);
}

/* FAQ Load More / Show Less */
.faq-hidden {
    display: none;
}

.faq-section #loadMoreFaqs,
.faq-section #showLessFaqs {
    margin: 2rem auto 0;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    border: 2px solid #1e40af;
    color: #1e40af;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
}

.faq-section #loadMoreFaqs:hover,
.faq-section #showLessFaqs:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
}

.faq-section #loadMoreFaqs i,
.faq-section #showLessFaqs i {
    margin-left: 6px;
    transition: transform 0.25s ease;
}

.faq-section #loadMoreFaqs:hover i {
    transform: translateY(2px);
}

.faq-section #showLessFaqs:hover i {
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    padding: 50px 0 0;
    border-top: 2px solid rgba(59, 130, 246, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

.footer-main {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 1rem;
}

/* Logo branco no rodapé */
.footer-brand .custom-logo-link {
    display: inline-block;
}

.footer-brand .custom-logo-link img {
    max-height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-brand .footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.footer-brand .footer-logo-text:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

/* Links do menu no rodapé */
.footer-nav {
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-menu a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Endereço e contato no rodapé */
.footer-address {
    font-style: normal;
    margin: 0;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.footer-item:last-child {
    margin-bottom: 0;
}

.footer-item i {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-item.footer-hours {
    flex-wrap: wrap;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-slogan {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-float i {
    font-size: 32px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }

    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }
}

.mini-header {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #1e3a8a 100%);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.logo-wrapper img {
    max-height: 50px;
    width: auto;
}

.mini-header .logo-wrapper img {
    filter: brightness(0) invert(1);
}

.site-logo {
    text-decoration: none;
    color: var(--dark-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.mini-header .site-logo {
    color: #fff;
}

.logo-text {
    background: linear-gradient(90deg, var(--primary-color), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mini-header .logo-text {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
}

.mini-header-nav {
    display: flex;
    align-items: center;
}

.mini-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.mini-nav-menu li {
    margin: 0;
}

.mini-nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.mini-header .mini-nav-menu a {
    color: rgba(255, 255, 255, 0.95);
}

.mini-nav-menu a:hover {
    color: var(--primary-color);
}

.mini-header .mini-nav-menu a:hover {
    color: #fff;
}

.mini-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.mini-header .mini-nav-menu a::after {
    background: #fff;
}

.mini-header .mini-nav-menu a:hover::after {
    width: 100%;
}

.btn-outline-custom i,
.btn-primary-custom i {
    margin-right: 5px;
}

/* Galeria do produto – layout compacto e profissional */
.product-gallery-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.product-gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.product-gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.product-main-image {
    position: relative;
    aspect-ratio: 4 / 3;
    max-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image:hover {
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
}

.product-main-image .product-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-main-image:hover .product-main-img {
    transform: scale(1.02);
}

.product-gallery-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.product-main-image:hover .product-gallery-zoom-hint {
    opacity: 1;
}

.product-gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.gallery-thumb:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.gallery-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(49, 110, 249, 0.2);
}

.gallery-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 575px) {
    .product-gallery-wrapper {
        max-width: 100%;
    }

    .product-main-image {
        max-height: 280px;
        aspect-ratio: 1;
    }

    .gallery-thumb {
        width: 48px;
        height: 48px;
    }
}

.product-price-hero {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.product-categories-hero a {
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 10px;
}

.product-categories-hero a:hover {
    text-decoration: underline;
}

.product-description-full {
    padding: 20px 0;
    border-top: 2px solid #DBEAFE;
    margin-top: 30px;
}

.product-description-full h3 {
    color: var(--dark-green);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

#imageModal .modal-content {
    background: transparent;
    border: none;
}

#imageModal .btn-close {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: 1;
}

#imageModal .btn-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

#imageModal img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Product Hero Banner */
.product-hero-banner {
    position: relative;
    min-height: max(70vh, 50vw);
    display: flex;
    align-items: center;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
    padding: 80px 0 80px;
    box-sizing: border-box;
}

/* Hero compacto da página de produto: só badge + nome, 300px */
.product-hero-banner.product-hero-compact {
    min-height: 200px;
    height: 200px;
    padding: 24px 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.product-hero-banner.product-hero-compact[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
}

.product-hero-compact .product-hero-title {
    font-size: 2rem;
    margin-bottom: 0;
}

.product-hero-compact .product-hero-badge {
    margin-bottom: 0.5rem;
}

.product-hero-banner[style*="background-image"] {
    background-size: 100% auto !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.product-hero-banner .container {
    position: relative;
    z-index: 2;
}

.product-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.product-hero-badge {
    animation: fadeInUp 0.6s ease-out;
    margin-bottom: 20px;
    display: inline-block;
}

.product-hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(49, 110, 249, 0.4),
        0 0 60px rgba(49, 110, 249, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.product-hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow:
        1px 1px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out;
    line-height: 1.6;
}

.product-hero-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(49, 110, 249, 0.5);
    animation: fadeInUp 1.1s ease-out;
}

.product-hero-categories {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease-out;
}

.product-hero-categories a {
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 10px;
    text-shadow: 0 0 10px rgba(49, 110, 249, 0.5);
}

.product-hero-categories a:hover {
    text-decoration: underline;
    text-shadow: 0 0 15px rgba(49, 110, 249, 0.7);
}

.product-hero-buttons {
    animation: fadeInUp 1.3s ease-out;
}

.product-hero-buttons .btn {
    margin: 5px;
}

.product-hero-brand {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.product-hero-price-wrap {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
    margin-bottom: 20px;
}

.product-hero-price-old {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.product-hero-price-current {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(49, 110, 249, 0.5);
}

.product-hero-banner .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

.product-hero-banner .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

/* ============================================
   Página de detalhe do produto – padrão loja virtual
   ============================================ */
.product-detail-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.product-detail-gallery {
    position: sticky;
    top: 100px;
}

.product-detail-gallery .product-main-image {
    aspect-ratio: 4 / 3;
    max-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.product-detail-gallery .product-gallery-thumbnails {
    margin-top: 0.75rem;
    gap: 6px;
}

.product-detail-summary {
    padding-left: 0;
}

@media (min-width: 992px) {
    .product-detail-summary {
        padding-left: 1rem;
    }
}

.product-detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.product-detail-brand {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.product-detail-price-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-detail-price-current {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-detail-excerpt {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.product-detail-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.product-detail-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.product-detail-highlights li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.product-detail-actions .btn {
    min-height: 48px;
}

/* Abas Descrição | Especificações */
.product-tabs-section {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}

.product-detail-tabs {
    border-bottom: 2px solid var(--border-light);
    gap: 0;
}

.product-detail-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    margin-bottom: -2px;
    border-radius: 0;
}

.product-detail-tabs .nav-link:hover {
    color: var(--primary-color);
}

.product-detail-tabs .nav-link.active {
    color: var(--primary-color);
    background: transparent;
    border-bottom-color: var(--primary-color);
}

.product-tab-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.product-detail-tab-content .product-description-content {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1rem;
}

.product-detail-tab-content .product-description-content p {
    margin-bottom: 1rem;
}

.product-specs-table {
    margin-bottom: 0;
}

.product-specs-table td {
    padding: 0.65rem 0;
    vertical-align: middle;
    border-color: var(--border-light);
}

.product-specs-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--border-light);
}

.product-specs-table td:first-child {
    width: 40%;
    color: var(--text-dark);
}

.product-specs-table td:only-child {
    width: auto;
}

@media (max-width: 575px) {
    .product-detail-gallery {
        position: static;
    }

    .product-detail-gallery .product-main-image {
        max-height: 280px;
        aspect-ratio: 1;
    }

    .product-detail-highlights {
        grid-template-columns: 1fr;
    }
}

/* Product LP – Galeria, specs, CTA */
.product-lp-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.product-lp-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.gallery-thumb {
    opacity: 0.7;
    transition: opacity 0.2s, box-shadow 0.2s;
    border: 3px solid transparent;
    border-radius: 10px;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    box-shadow: 0 4px 12px rgba(49, 110, 249, 0.3);
}

.gallery-thumb.active {
    border-color: var(--primary-color);
}

/* Dados técnicos – cards */
.product-tech-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}

.product-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(49, 110, 249, 0.12);
}

.product-tech-icon {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.75rem;
}

.product-tech-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.product-tech-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Especificações e descrição */
.product-specs-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.product-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs-list li {
    padding: 0.6rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}

.product-specs-list li:last-child {
    border-bottom: none;
}

.product-description-block {
    border-color: #e2e8f0 !important;
}

.product-description-content {
    color: #4B5563;
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-description-content p {
    margin-bottom: 1rem;
}

/* CTA produto */
.product-lp-cta-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.product-lp-cta-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.product-lp-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.product-lp-contact-item i {
    color: var(--primary-color);
    flex-shrink: 0;
}

.product-lp-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.product-lp-contact-item a:hover {
    text-decoration: underline;
}

.contact-info-card {
    transition: transform 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-item {
    padding-bottom: 15px;
    border-bottom: 1px solid #E0F2FE;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-form-card {
    transition: transform 0.3s;
}

.contact-form-card:hover {
    transform: translateY(-2px);
}

/* Section Sobre – imagem de fundo, shapes e parallax */
.sobre-section {
    position: relative;
    overflow: hidden;
}

.sobre-bg-image {
    position: absolute;
    top: -15%;
    left: 0;
    right: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
    filter: grayscale(100%);
    will-change: transform;
}

.sobre-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 0;
}

.sobre-section>.container {
    position: relative;
    z-index: 1;
}


.sobre-shape {
    position: absolute;
    display: block;
    will-change: transform;
    pointer-events: none;
}

.sobre-shape-1 {
    width: 420px;
    height: 420px;
    top: -140px;
    right: -100px;
}

.sobre-shape-2 {
    width: 320px;
    height: 320px;
    bottom: -80px;
    left: -60px;
}

.sobre-shape-3 {
    width: 220px;
    height: 220px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.about-image-wrapper {
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image-wrapper:hover {
    transform: scale(1.02);
}

.about-image-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: #fff;
    border-radius: 18px;
    border: 2px solid #DBEAFE;
    transition: all 0.3s;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.about-feature-item i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.about-feature-item:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(49, 110, 249, 0.2);
}

@media (max-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 50%;
    }
}

.product-hero-buttons .btn {
    margin: 5px;
}

.contact-info-card {
    transition: transform 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-item {
    padding-bottom: 15px;
    border-bottom: 1px solid #E0F2FE;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-form-card {
    transition: transform 0.3s;
}

.contact-form-card:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .product-hero-title {
        font-size: 2.5rem;
    }

    .product-hero-subtitle {
        font-size: 1.1rem;
    }

    .product-hero-price {
        font-size: 1.8rem;
    }

    .product-hero-banner {
        min-height: 60vh;
        padding: 80px 0 60px;
    }

    .product-hero-banner.product-hero-compact {
        min-height: 300px;
        height: 300px;
        padding: 24px 0;
    }

    .product-hero-compact .product-hero-title {
        font-size: 1.5rem;
    }

    .model-card {
        min-height: auto;
    }

    .model-image {
        min-height: 180px;
        max-height: 200px;
        padding: 1rem 1rem 0.5rem;
    }

    .col-lg-3 {
        width: 100%;
    }

    .model-content {
        flex-direction: column;
    }

    .col-md-6 {
        margin-bottom: 20px;
    }

    .mini-header {
        padding: 10px 0;
    }

    .mini-nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

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

    .site-logo {
        font-size: 1.2rem;
    }

    .hero-section {
        min-height: 320px;
        padding: 45px 0 35px;
    }

    .mini-header-nav {
        flex-direction: column;
        align-items: flex-end;
    }

    .product-hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .about-feature-item {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .about-feature-item i {
        font-size: 0.9rem;
    }

    .site-footer .footer-main {
        padding-bottom: 32px;
    }

    .site-footer .footer-brand {
        text-align: center;
    }

    .site-footer .footer-title,
    .site-footer .footer-nav {
        text-align: center;
    }

    .site-footer .footer-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 1.5rem;
    }

    .site-footer .footer-address {
        text-align: center;
    }

    .site-footer .footer-item {
        justify-content: center;
    }
}

/* ========================================
   Página da Loja – Sidebar + Grid de Produtos
   ======================================== */
.shop-page {
    min-height: 100vh;
}

.shop-sidebar {
    position: sticky;
    top: 100px;
}

.shop-filters {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.filter-widget {
    margin-bottom: 0;
}

.filter-widget-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.shop-filters-form .shop-search-input.input-group {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.shop-filters-form .shop-search-input .form-control {
    border: none;
    font-size: 0.95rem;
}

.shop-filters-form .shop-search-input .form-control:focus {
    box-shadow: none;
    border-color: transparent;
}

.shop-filters-form .shop-search-input .btn {
    padding: 0.5rem 1rem;
}

.shop-filters-form .filter-select {
    border-radius: 10px;
    border-color: var(--border-light);
    font-size: 0.9rem;
}

.shop-filters-form .filter-price-fields .input-group {
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.shop-filters-form .filter-price-fields .input-group-text {
    background: var(--surface-alt);
    border: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.shop-filters-form .filter-price-fields .form-control {
    border: none;
    font-size: 0.9rem;
}

.shop-filters-form .filter-widget-actions .btn-primary-custom {
    padding: 0.6rem 1rem;
}

.shop-filters-form .filter-widget-actions .btn-outline-secondary {
    border-radius: 10px;
}

.filter-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-categories-list li {
    margin-bottom: 0.35rem;
}

.filter-categories-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.filter-categories-list a:hover,
.filter-categories-list a.active {
    background: var(--light-bg);
    color: var(--primary-color);
}

.filter-categories-list .count {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.shop-products-wrapper {
    min-height: 200px;
}

.shop-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.shop-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    background: #fff;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.shop-pagination .page-numbers:hover,
.shop-pagination .page-numbers.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

@media (max-width: 991px) {
    .shop-sidebar {
        position: static;
        margin-bottom: 1.5rem;
    }

    .shop-page .order-md-1.order-2 {
        order: 2;
    }

    .shop-page .order-md-2.order-1 {
        order: 1;
    }
}

/* ============================================
   Simulador de Financiamento
   ============================================ */
.simulador-financiamento {
    background: #f8fafc;
    min-height: 60vh;
}

.simulador-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-light);
    padding: 2rem;
}

.simulador-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.simulador-title i {
    color: var(--primary-color);
}

.simulador-produto-ref {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.simulador-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
}

.simulador-form .form-control,
.simulador-form .form-select {
    border-radius: 10px;
    border-color: var(--border-light);
}

.simulador-form .form-control:focus,
.simulador-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(49, 110, 249, 0.15);
}

.simulador-btn {
    min-height: 52px;
}

.simulador-hr {
    margin: 1.75rem 0;
    border-color: var(--border-light);
}

.simulador-result-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.simulador-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.simulador-result-item {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.simulador-result-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.simulador-result-valor {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.simulador-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 575px) {
    .simulador-card {
        padding: 1.25rem;
    }

    .simulador-result-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Mobile Optimization
   ========================================= */

@media (max-width: 991px) {
    .mini-nav-menu {
        padding-top: 1rem;
        align-items: center !important;
        /* Centralizado no mobile fica legal também, ou flex-start */
    }

    .navbar-collapse {
        border-top: 1px solid #f0f0f0;
        margin-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {

    /* Footer Centralization */
    .footer-main .col-lg-4,
    .footer-main .col-md-6 {
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        /* Espaço entre icones */
        margin-top: 10px;
        width: 100%;
    }

    .footer-social a {
        margin: 0;
        /* remove margens individuais se houver */
    }

    .footer-nav {
        display: inline-block;
        text-align: center;
    }

    .footer-address {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* Mobile Menu Customizations requested */
@media (max-width: 991px) {

    /* Force White Hamburger Icon */
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    /* Ensure Header background is dark enough for white icon if needed, 
       or assume user handles it. But let's set a background for the header in mobile just in case 
       if the user wants it white, it usually implies a dark header. 
       Let's use the primary color or dark blue for mobile header to match footer? 
       Or just leave it. The user asked for the ICON to be white. */
    .mini-header {
        background-color: var(--primary-color) !important;
        /* Suggestion: Make mobile header primary color so white icon works */
    }

    .site-logo .logo-text {
        color: #fff !important;
        /* Make logo white too if background changed */
    }

    /* Center Menu Items in Opened Menu */
    .navbar-collapse {
        text-align: center;
    }

    .mini-nav-menu {
        align-items: center;
        justify-content: center;
    }

    .mini-nav-menu li {
        width: 100%;
        text-align: center;
        padding: 5px 0;
    }

    .mini-nav-menu li a {
        color: #fff !important;
        /* Links white on dark bg */
        display: block;
    }
}

/* Strict Mobile Menu Centering */
@media (max-width: 991px) {
    .mini-header .navbar-nav {
        width: 100%;
        text-align: center;
    }

    .mini-header .navbar-nav .nav-item {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .mini-header .navbar-nav .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* Mobile Top Bar Adjustment */
@media (max-width: 768px) {
    .top-bar-sep {
        display: none;
    }

    .top-bar-tagline {
        display: block;
        margin-top: 2px;
        line-height: 1.3;
        font-size: 0.9em;
    }

    .top-bar {
        padding: 8px 15px;
        /* Adjust padding to look good with 2 lines */
    }
}

/* Hide Footer Links on Mobile */
@media (max-width: 768px) {
    .footer-links-column {
        display: none !important;
    }
}

/* Product Card WhatsApp Button Customization */
.btn-whatsapp-custom {
    border: 2px solid #25D366;
    color: #25D366;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-whatsapp-custom:hover {
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Force Equal Width Product Buttons */
.model-info .d-flex.gap-2 .btn {
    flex: 1 1 0px !important;
    /* Ignore content size, force 50/50 split */
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Updated Product Buttons Styles */
.btn-whatsapp-custom {
    background-color: #25D366;
    border: 2px solid #25D366;
    color: #fff;
    /* White text by default */
}

.btn-whatsapp-custom:hover {
    background-color: #1a9e4b;
    /* Darker green */
    border-color: #1a9e4b;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Reduce size to fit better */
.model-info .d-flex.gap-2 .btn {
    padding: 6px 10px !important;
    /* Smaller padding */
    font-size: 0.8rem !important;
    /* Smaller text */
}

/* Spacing for WhatsApp Icon */
.btn-whatsapp-custom i {
    margin-right: 6px;
}

/* Blue Button for Simulator */
.btn-blue-custom {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(49, 110, 249, 0.4);
}

.btn-blue-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 110, 249, 0.5);
}

/* Law Notice Bar Refined */
.law-notice-bar {
    background: linear-gradient(90deg, #fdfdfd 0%, #f0fdf4 100%);
    border-bottom: 1px solid #bcf0da;
    padding: 0;
    position: sticky;
    top: 80px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.law-notice-wrapper {
    text-decoration: none !important;
    color: inherit;
    display: block;
    padding: 10px 0;
    transition: background 0.2s ease;
}

.law-notice-wrapper:hover {
    background-color: rgba(5, 150, 105, 0.05);
}

.law-notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #065f46;
    font-size: 0.95rem;
}

.law-notice-content i {
    font-size: 1.4rem;
    color: #059669;
}

.law-notice-content strong {
    color: #047857;
    font-weight: 700;
}

.law-notice-more {
    margin-left: 10px;
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 12px;
    border: 1px solid #059669;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.law-notice-wrapper:hover .law-notice-more {
    background-color: #059669;
    color: #fff;
}

@media (max-width: 991px) {
    .law-notice-bar {
        top: 60px;
    }

    .law-notice-content {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 4px;
        line-height: 1.4;
    }

    .law-notice-content span {
        max-width: 320px;
    }

    .law-notice-content i {
        font-size: 1.2rem;
    }

    .law-notice-wrapper {
        padding: 8px 0;
    }
}

/* Custom Oval Button */
.btn-custom-oval {
    background-color: #F90 !important;
    color: #FFF !important;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 5px 32px;
    /* Decreased padding */
    font-weight: 600;
    /* Menu font weight */
    font-family: var(--font-body);
    /* Menu font family */
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-custom-oval a {
    color: #FFF !important;
}

.btn-custom-oval:hover {
    background-color: #F60 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #000000 !important;
}

.btn-custom-oval a:hover {
    text-decoration: none !important;
}

/* --- Consortium Specific Styles --- */
.consortium-hero {
    padding: 100px 0;
    min-height: 500px;
}

.welcome-section h2 {
    color: var(--primary-color);
}

.small-card {
    min-height: auto;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.small-card:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(49, 110, 249, 0.1);
}

.small-card img {
    object-fit: cover;
    height: 60px;
    width: 60px;
}

.product-price-current {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Hero Title Adjustments */
.hero-title br {
    display: block;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .consortium-hero {
        padding: 60px 0;
    }
}

/* Shop Page Adjustments */
.shop-page {
    min-height: 80vh;
}

.shop-pagination .page-numbers {
    display: flex;
    gap: 8px;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.shop-pagination .page-numbers li span,
.shop-pagination .page-numbers li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.shop-pagination .page-numbers li span.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.shop-pagination .page-numbers li a:hover {
    background: #f1f5f9;
    border-color: var(--primary-color);
    color: var(--primary-color);
}