/* RESET E CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-dark: #121417;
    --bg-layer: #181c20;
    --bg-surface: #1f2429;
    --bg-card: #242a30;
    --yellow: #f4c214;
    --yellow-soft: #f8d975;
    --text-white: #f5f7fa;
    --text-muted: #9ca1aa;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

/* SCROLL REVEAL */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #A09D9E 0%, #B1AEAF 100%);
    color: var(--text-white);
    overflow-x: hidden;
}

body::selection {
    background: rgba(244, 194, 20, 0.25);
    color: var(--bg-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── HEADER & NAVBAR ─── */
.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(18, 20, 24, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
    background: rgba(18, 20, 24, 0.72);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

.logo-img {
    height: 120px;
    width: auto;
    display: block;
    margin: -30px 0;
}

.logo-box {
    border: 1px solid rgba(244, 194, 20, 0.8);
    color: var(--yellow);
    padding: 10px 18px;
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: 1px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.nav-menu {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow-soft);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow-soft), var(--yellow));
    border-radius: 999px;
}

.btn-budget {
    background: linear-gradient(135deg, #f4c214, #f7d975);
    color: #0b0f12;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 18px 32px rgba(244, 194, 20, 0.2);
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.btn-budget:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.6rem;
    cursor: pointer;
}

.mobile-only { display: none; }

/* ─── HERO SECTION ─── */
.hero {
    position: relative;
    background: linear-gradient(90deg, #A09D9E 0%, #B1AEAF 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-container {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: stretch;
    min-height: 340px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Coluna esquerda: texto */
.hero-content {
    padding: 52px 40px 52px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 560px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Linha amarela decorativa no topo */
.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 62px;
    height: 4px;
    background: var(--yellow);
    border-radius: 999px;
    box-shadow: 0 0 14px rgba(244, 194, 20, 0.4);
}

/* Linha amarela decorativa no fundo */
.hero-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 62px;
    height: 4px;
    background: var(--yellow);
    border-radius: 999px;
    box-shadow: 0 0 14px rgba(244, 194, 20, 0.4);
    opacity: 0.6;
}

.hero-content h1 {
    font-size: clamp(1.75rem, 2.8vw, 2.6rem);
    line-height: 1.08;
    margin-bottom: 18px;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #121212;
    position: relative;
}

.hero-content h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--yellow);
    border-radius: 999px;
    margin-top: 16px;
}

.hero-content .highlight {
    color: var(--yellow);
}

.hero-content p {
    color: #2a2a2a;
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 420px;
    line-height: 1.9;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #f4c214, #f7d975);
    color: #0c0f12;
    text-decoration: none;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 14px 32px rgba(244, 194, 20, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(244, 194, 20, 0.35);
}

.btn-secondary {
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #121212;
    text-decoration: none;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    transition: transform 0.25s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1);
    border-color: var(--yellow);
}

/* Coluna direita: imagem cola nas bordas sem border-radius */
.hero-image {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    min-width: 420px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
    filter: brightness(0.95) contrast(1.04);
}

/* Gradiente leve à esquerda da imagem para fundir com o fundo do texto */
.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 60px;
    background: linear-gradient(90deg, rgba(160, 157, 158, 1), transparent);
    z-index: 1;
    pointer-events: none;
}

/* ─── SUB-BAR CATEGORIAS ─── */
/* Ocupa 100% da largura, itens separados por linhas verticais */
.sub-bar {
    background: #15181c;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-bar-container {
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.sub-item {
    flex: 1;
    font-size: 0.86rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}

.sub-item:last-child {
    border-right: none;
}

.sub-item i {
    color: var(--yellow);
    font-size: 1rem;
}

/* ─── INFORMATIVE CARDS ─── */
.info-section {
    padding: 48px 0 38px;
    background: linear-gradient(180deg, rgba(18, 20, 24, 0.15), rgba(18, 20, 24, 0.04));
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.info-card {
    background: linear-gradient(170deg, rgba(22, 27, 35, 0.92), rgba(18, 20, 24, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--yellow);
    border-radius: 0 0 4px 4px;
    transition: height 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 194, 20, 0.25);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.info-card:hover::before {
    height: 100%;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: #f5f7fa;
    font-weight: 700;
    position: relative;
}

.info-card p {
    color: #dce2ed;
    line-height: 1.85;
    font-size: 0.95rem;
}

/* ───────── PRODUCTS SECTION PREMIUM ───────── */

.products-section {
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;

    background:
    radial-gradient(circle at top center,
    rgba(255, 191, 0, 0.08),
    transparent 40%),
    linear-gradient(
    180deg,
    #0b0d11 0%,
    #11151b 100%);
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 700px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,191,0,.4),
        transparent
    );
}

.products-section .sub {
    display: block;
    color: #ffbf00;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .30em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #ffbf00,
        transparent
    );
}

.products-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);

    color: #d7dbe0;

    margin-bottom: 25px;
}

.products-note::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ffbf00;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 30px;
}

/* CARD */

.pcard {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 24px;

    background: rgba(20,24,31,.90);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,.08);

    transition: .4s ease;

    box-shadow:
    0 10px 35px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.05);
}


.pcard:hover {
    transform: translateY(-10px);

    border-color: rgba(255,191,0,.35);

    box-shadow:
    0 25px 60px rgba(0,0,0,.45),
    0 0 30px rgba(255,191,0,.15);
}

/* IMAGEM */

.pcard-img {
    width: 100%;
    aspect-ratio: 4/3;

    overflow: hidden;

    background: #0d1117;

    position: relative;
}

.pcard-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s ease;
}

.pcard:hover .pcard-img img:not([style*="opacity: 0"]) {
    transform: scale(1.08);
}

/* SLIDER (cards com múltiplas imagens) */

[data-slider] img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .4s ease;
}

[data-slider] img.is-active {
    opacity: 1;
}

[data-slider] .pcard-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;

    border: none;

    border-radius: 50%;

    background: rgba(0,0,0,.7);

    color: #fff;

    z-index: 5;

    opacity: 0;

    cursor: pointer;

    transition: .3s ease;
}

.pcard:hover [data-slider] .pcard-arrow {
    opacity: 1;
}

[data-slider] .pcard-arrow-left {
    left: 12px;
}

[data-slider] .pcard-arrow-right {
    right: 12px;
}

[data-slider] .pcard-arrow:hover {
    background: #ffbf00;
    color: #111;
}

[data-slider] .pcard-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 6px;

    z-index: 5;
}

[data-slider] .dot {
    width: 8px;
    height: 8px;

    border-radius: 999px;

    background: rgba(255,255,255,.3);
}

[data-slider] .dot.is-active {
    width: 20px;
    background: #ffbf00;
}

/* CONTEÚDO */

.pcard-body {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 24px;
}

.pcard-title {
    color: #fff;

    font-size: 1.1rem;

    font-weight: 700;

    margin-bottom: 10px;
}

.pcard-desc {
    color: #dce2ed;
    line-height: 1.7;
    font-size: .92rem;
    margin-bottom: 22px;
}

/* BOTÃO */

.btn-wa {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    padding: 14px 18px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #25d366,
        #1aa94f
    );

    color: #fff;

    text-decoration: none;

    font-size: .9rem;

    font-weight: 700;

    transition: .3s ease;
}

.btn-wa::before {
    content: '\f232';
    font-family: 'Font Awesome 6 Brands';
}

.btn-wa:hover {
    transform: translateY(-3px);

    box-shadow:
    0 10px 25px rgba(37,211,102,.35);
}


/* ─── CONTACT ─── */
.contact-section {
    padding: 72px 0 60px;
    background: #12141a;
}

.contact-section .sub {
    display: block;
    color: var(--yellow);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: start;
}

.contact-copy { text-align: left; }

.contact-copy h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.1;
    margin: 20px 0 18px;
    color: #f5f7fa;
}

.contact-copy p {
    color: #c5cad3;
    font-size: 1rem;
    line-height: 1.9;
    max-width: 520px;
}

.contact-details {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f5f7fa;
    font-weight: 600;
}

.contact-details i { color: var(--yellow); min-width: 24px; }

.contact-card {
    background: #1a1e25;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.contact-card h3 {
    color: #f5f7fa;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.contact-card p {
    color: #c5cad3;
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-actions {
    display: grid;
    gap: 12px;
}

.btn-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--yellow);
    border: 1px solid rgba(244, 194, 20, 0.3);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background 0.25s, color 0.25s;
}

.btn-instagram:hover {
    background: var(--yellow);
    color: #0b0f12;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--text-white);
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(244, 194, 20, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
    margin-bottom: 22px;
}

.contact-form button { width: 100%; }

/* ─── BENEFITS FOOTER ─── */
.benefits-footer {
    background: #0e1014;
    padding: 52px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 22px;
    border-radius: 20px;
    background: #131619;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.benefit-item:hover {
    border-color: rgba(244, 194, 20, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

.benefit-item i {
    color: var(--yellow);
    font-size: 1.65rem;
    min-width: 52px;
    min-height: 52px;
    display: grid;
    place-items: center;
    background: rgba(244, 194, 20, 0.1);
    border: 1px solid rgba(244, 194, 20, 0.14);
    border-radius: 14px;
    flex-shrink: 0;
}

.benefit-item strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    margin-bottom: 3px;
    letter-spacing: 0.03em;
}

.benefit-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ─── MAIN FOOTER ─── */
.main-footer {
    background: #0a0c0f;
    padding: 56px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 18px;
    line-height: 1.9;
    max-width: 320px;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 0.78rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--yellow);
    font-weight: 700;
}

.footer-links a,
.footer-contact p {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 13px;
    font-size: 0.9rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
    color: var(--yellow-soft);
    padding-left: 6px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--yellow);
    width: 16px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: rgba(244, 194, 20, 0.12);
    border-color: rgba(244, 194, 20, 0.28);
    color: var(--yellow);
}

.footer-copy {
    padding: 22px 20px;
    color: rgba(156, 161, 170, 0.6);
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 0.02em;
}

/* ─── LINKS: remove cor azul do browser ─── */
a {
    color: inherit;
    text-decoration: none;
}

/* ─── LIGHTBOX ─── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    user-select: none;
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s;
    z-index: 10001;
}

.lightbox-arrow:hover {
    background: rgba(244, 194, 20, 0.4);
}

.lightbox-arrow-left  { left: 16px; }
.lightbox-arrow-right { right: 16px; }

#lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    background: rgba(0,0,0,0.5);
    padding: 4px 14px;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .lightbox-arrow { width: 40px; height: 40px; font-size: 2rem; }
    .lightbox-arrow-left  { left: 8px; }
    .lightbox-arrow-right { right: 8px; }
}

/* ─── RESPONSIVIDADE ─── */
@media (max-width: 992px) {
    .products-grid          { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .benefits-container     { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-container      { grid-template-columns: 1fr; }
    .footer-grid            { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .info-grid              { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-container         { grid-template-columns: 1fr; }
    .hero-image             { height: 260px; order: -1; }
    .hero-content           { padding: 40px 20px; }
}

@media (max-width: 768px) {

    /* ── Header / Nav ── */
    .header .container      { padding: 0 10px; }

    .desktop-only           { display: none; }
    .mobile-only            { display: inline-flex; }
    .menu-toggle            { display: block; }

    .nav-menu {
    position: fixed;  /* troca absolute por fixed */
    top: 76px;
    left: -100%;
    width: 100%;
    background-color: rgba(17, 19, 23, 0.98);
    flex-direction: column;
    padding: 26px 24px;
    gap: 20px;
    transition: left 0.35s ease;
    border-bottom: 2px solid rgba(244, 194, 20, 0.95);
    border-radius: 0 0 16px 16px;
    z-index: 999;
}
    .nav-menu.active        { left: 0; }

    /* ── Sub bar ── */
    .sub-bar-container      { flex-wrap: wrap; }
    .sub-item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        justify-content: flex-start;
        padding-left: 20px;
    }

    /* ── Hero ── */
    .hero-container         { padding: 0; }
    .hero-content {
        border-radius: 0;
        padding: 40px 16px;
        position: relative;
        z-index: 2;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .25)
        );
    }
    .hero-image,
    .hero-overlay           { z-index: 1; }

    .hero-content h1        { color: #fff; }
    .hero-content h1 .highlight,
    .hero-content h1 span   { color: #f4c214; }

    .hero-content p,
    .hero-description {
        color: #fff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
    }

    /* ── Produtos ── */
    .products-section       { padding: 60px 0; }  /* era 80px — remove espaço vazio */
    .products-grid          { grid-template-columns: 1fr; gap: 20px; }
    .section-title          { font-size: 2rem; }
    .pcard                  { border-radius: 20px; }

    /* ── Benefícios ── */
    .benefits-container     { grid-template-columns: 1fr; gap: 14px; }
    .benefit-item           { padding: 20px 18px; }

    /* ── Misc ── */
    .info-grid              { grid-template-columns: 1fr; }
    .form-row               { grid-template-columns: 1fr; }
    .footer-grid            { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; } 

    /* ── Produtos ── */
.products-section {
    padding: 60px 0;
    overflow: visible !important; /* garante que o reveal funcione */
}
/* força visibilidade caso o JS falhe no mobile */
.products-section.reveal {
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 768px) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .reveal-visible {
        opacity: 1 !important;
        transform: none !important;
    }
}

}

