:root {
    --bg-main: #f8f9fa;
    --text-main: #1a1a1a;
    --text-muted: #6c757d;
    --gold: #d4af37;
    --gold-hover: #b59021;
    --black: #0f1114;
    --white: #ffffff;
    --border-radius: 8px;
    --whatsapp: #25d366;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Montserrat", "Poppins", sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    font-family: inherit;
}

/* --- ESTRUTURA GERAL --- */
.header,
.hero,
.partners-section,
.catalog-section,
.simulation-section,
.about-section,
.location-section,
.footer-premium {
    width: 100vw;
    max-width: 100%;
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--gold);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.6rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 65px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    color: var(--text-main);
}

.logo-subtitle {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-cnpj {
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
    border-left: 1px solid #ccc;
    padding-left: 1rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-main);
}

/* --- HERO (DARK) --- */
.hero {
    margin-top: 0;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6)),
        url("https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    margin: 0 auto;
    margin-top: 80px;
    padding-bottom: 4rem;
}

.hero-eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- BOTÕES GERAIS --- */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* --- PARTNERS (CLARO) --- */
.partners-section {
    background: #fdfdfd;
    padding: 2.5rem 0;
    border-top: 4px solid var(--gold);
    overflow: hidden;
    white-space: nowrap;
    color: #333;
}

.section-label-center {
    display: block;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-weight: 700;
    white-space: normal;
    padding: 0 15px;
    line-height: 1.5;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

.marquee-item {
    display: inline-block;
    padding: 0 2.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ccc;
    text-transform: uppercase;
    cursor: default;
}

.marquee-item:hover {
    color: var(--gold);
    transform: scale(1.05);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- CATALOG (DARK) --- */
.catalog-section {
    background-color: var(--black);
    color: white;
    padding: 5rem 1.25rem;
    border-top: 4px solid var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.section-subtitle {
    color: #a0a0a0;
}

/* --- FILTROS (CONTAINER) --- */
.advanced-filters {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-group {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* --- SLIDERS & INPUTS --- */
.price-filter-wrapper {
    margin-bottom: 2rem;
    padding: 0 10px;
}

.filter-header-row {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.filter-label {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Inputs Formatados */
.price-inputs-styled {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #0f1114;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0 10px;
    width: 140px;
    height: 45px;
    transition: 0.3s;
}

.input-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.currency-symbol {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    margin-right: 5px;
}

.formatted-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
}

.separator {
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Inputs Pequenos (Filtros Extras) */
.small-inputs .input-wrapper {
    width: 120px;
    height: 38px;
    font-size: 0.9rem;
}

.small-inputs .formatted-input {
    font-size: 0.9rem;
}

/* Range Slider */
.range-slider {
    position: relative;
    width: 100%;
    height: 5px;
    background-color: #333;
    border-radius: 5px;
}

.slider-track {
    height: 100%;
    position: absolute;
    border-radius: 5px;
    background-color: var(--gold);
    z-index: 1;
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    z-index: 2;
    margin: 0;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid white;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    margin-top: -1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.range-slider input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid white;
    pointer-events: auto;
    cursor: pointer;
}

/* --- BOTÕES DE AÇÃO DOS FILTROS --- */
.extra-filters-container {
    margin: 2rem 0;
    position: relative;
}

.filters-actions-wrapper {
    display: flex;
    gap: 15px;
    align-items: stretch; /* Mesma altura */
    margin-bottom: 10px;
}

/* Botão 1: Filtros Avançados */
.btn-toggle-filters {
    flex: 1; /* Ocupa espaço restante */
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    color: #ccc;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-toggle-filters:hover,
.btn-toggle-filters.active {
    background: var(--gold);
    color: black;
    border-color: var(--gold);
}

/* Botão 2: Limpar Filtros (Pequeno no canto) */
.btn-reset-filters {
    width: 50px;
    flex: none; /* Não cresce nem encolhe */
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 0; /* Centralizar ícone */
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-reset-filters:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    border-color: var(--gold);
}

/* Caixa Flutuante */
.floating-filters-box {
    display: none;
    background: #15171a;
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 10px;
    animation: slideDown 0.3s ease;
}

.floating-filters-box.open {
    display: block;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.filter-sub-group {
    margin-bottom: 2rem;
}

.sub-label {
    display: block;
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: center;
}

/* SELECTS */
.filter-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.control-item label {
    display: block;
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.control-item select {
    width: 100%;
    padding: 0.9rem;
    border-radius: 8px;
    border: 1px solid #333;
    background: #1a1c20;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d4af37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.65em auto;
    appearance: none;
}

.control-item select:focus {
    border-color: var(--gold);
}

/* --- GRID E CARDS --- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1120px;
    margin: 0 auto;
}

.card {
    background: white;
    color: var(--text-main);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: 0.3s;
    transform-origin: left;
}

.card:hover::after {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-admin {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--black);
}

.card-type {
    font-size: 0.65rem;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #666;
}

.card-credit {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-top: 5px;
    letter-spacing: -0.02em;
}

.card-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #999;
    display: block;
    font-weight: 600;
}

.card-values-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.card-value-block strong {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 600;
}

.card-footer {
    font-size: 0.8rem;
    color: #888;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-cta {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.loading-spinner {
    color: var(--gold);
    text-align: center;
    font-size: 1.1rem;
    padding: 3rem;
    display: none;
    font-weight: 500;
}

/* --- SIMULAÇÃO (CLARO) --- */
.simulation-section {
    background-color: #fcfcfc;
    color: var(--text-main);
    padding: 5rem 1.25rem;
    border-top: 4px solid var(--gold);
}

.simulation-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.simulation-text {
    text-align: center;
}

.simulation-text h2 {
    font-size: 2.2rem;
    margin: 0.5rem 0 1rem;
    color: var(--text-main);
}

.simulation-text p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.simulation-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 1px solid #eee;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

/* --- SOBRE (DARK) --- */
.about-section {
    background-color: var(--black);
    color: white;
    padding: 6rem 1.25rem;
    border-top: 4px solid var(--gold);
}

.about-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--white);
}

.about-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cnpj-text {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 2rem;
    font-weight: 600;
    opacity: 0.8;
}

.bio-intro {
    font-size: 1.1rem;
    color: var(--gold) !important;
    font-weight: 500;
    font-style: italic;
}

.about-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.about-list i {
    color: var(--gold);
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.profile-img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--gold);
    max-width: 100%;
    object-fit: cover;
}

/* --- LOCALIZAÇÃO (CLARO) --- */
.location-section {
    background-color: #fdfdfd;
    color: var(--text-main);
    padding: 5rem 1.25rem;
    border-top: 4px solid var(--gold);
    text-align: center;
}

.location-container {
    max-width: 900px;
    margin: 0 auto;
}

.location-header {
    margin-bottom: 2rem;
}

.location-icon-main {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.location-header h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin: 0;
    color: var(--text-main);
}

.location-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 1px solid #eee;
}

.address-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.btn-location {
    border-color: var(--text-main);
    color: var(--text-main);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-flex;
}

.btn-location:hover {
    background: var(--text-main);
    color: white;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

/* --- RODAPÉ (DARK) --- */
.footer-premium {
    background-color: var(--black);
    color: white;
    padding: 4rem 1.25rem 1.5rem;
    border-top: 4px solid var(--gold);
}

.footer-content {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    color: var(--white);
}

.footer-logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
}

.footer-headline {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
    max-width: 400px;
    color: var(--white);
}

.footer-desc {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 450px;
}

.btn-whatsapp-large {
    background: var(--whatsapp);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    background: #1ebc57;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.footer-info h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-list i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 3px;
}

.contact-list span {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    display: block;
}

.contact-list strong {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

/* --- ÍCONES SOCIAIS --- */
.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.social-links a.social-pill {
    width: auto;
    padding: 0 20px;
    border-radius: 50px;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.social-links a.social-pill span {
    display: inline-block;
}

.social-links a:hover {
    background: var(--gold);
    color: black;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
    max-width: 1120px;
    margin: 0 auto;
}

/* --- MODAL --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 2000;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: 0.3s;
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.modal-badge {
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #555;
}

.modal-title {
    font-size: 1.4rem;
    margin: 0.5rem 0 1.5rem;
    text-transform: uppercase;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-item .label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
}

.modal-item .value {
    font-weight: 600;
    font-size: 1rem;
}

.modal-item .highlight {
    color: var(--gold);
    font-size: 1.2rem;
}

.modal-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.modal-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 0.8rem;
    border-radius: 8px;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #1ebc57;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #1ebc57;
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding-top: 1rem;
        padding-bottom: 1rem;
        background: white;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }

    .nav.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .filter-controls {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-logo-area,
    .footer-headline,
    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-list li {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-btn {
        width: 30px;
        height: 30px;
    }

    .nav-cnpj {
        border-left: none;
        padding-left: 0;
        margin-top: 10px;
        border-top: 1px solid #eee;
        padding-top: 10px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.8rem;
    }

    .social-links a.social-pill {
        padding: 0 15px;
        font-size: 0.75rem;
    }

    /* Ajuste para botões de filtro no mobile */
    .filters-actions-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .btn-toggle-filters,
    .btn-reset-filters {
        width: 100%;
        flex: auto;
    }
}