/* Safe Mercantil — Brandbook */
:root {
    --safe-blue: #204c74;
    --safe-navy: var(--safe-blue);
    --safe-teal: #1a2e47;
    --safe-dark: var(--safe-teal);
    --safe-orange: #f08d04;
    --safe-amber: var(--safe-orange);
    --safe-white: #FFFFFF;
    --safe-off: #F4F7FB;
    --safe-gray: #5A6B7D;
    --safe-border: #DDE5EF;
    --font: 'Inter', system-ui, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 12px 40px rgba(32, 76, 116, 0.08);
    --transition: 0.3s ease;
    --section-y: clamp(56px, 8vw, 88px);
    --section-y-after-hero: clamp(40px, 6vw, 64px);
    --split-gap: clamp(32px, 5vw, 56px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset, 140px);
    overflow-x: clip;
}

body {
    font-family: var(--font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--safe-dark);
    background: var(--safe-white);
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.hero-home h1,
.page-hero h1,
.pilar-card h3,
.marca-card h3,
.linha-header h3,
.card-info h3,
.catalogo-card h3,
.product-meta-box h1,
.cta-band h2,
.form-box h3,
.related-title,
.testemunhos-b2b-title,
.highlight-card h3 {
    font-weight: 800;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
}

/* Utilitários */
.text-orange { color: var(--safe-orange); }
.text-navy { color: var(--safe-navy); }
.bg-grid {
    background-color: var(--safe-off);
    background-image:
        linear-gradient(rgba(32, 76, 116, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 76, 116, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--safe-orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--safe-navy);
    margin-bottom: 16px;
}

.section-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--safe-gray);
    max-width: 720px;
}

.section-text {
    color: var(--safe-gray);
    font-size: 16px;
    line-height: 1.7;
}

.section-lead + .section-text,
.section-text + .section-text {
    margin-top: 16px;
}

.split-grid__content .section-text + .values-list {
    margin-top: 20px;
}

.section-prose {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    color: var(--safe-gray);
    font-size: 18px;
    line-height: 1.8;
}

.section-block-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--safe-navy);
    margin: 28px 0 12px;
}

.section-block-title:first-child {
    margin-top: 0;
}

.section-title--md {
    font-size: clamp(24px, 4vw, 28px);
}

.section-side-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--safe-navy);
    margin-bottom: 8px;
}

.section-divider {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--safe-orange), var(--safe-blue));
    border-radius: 4px;
    margin: 20px 0 24px;
}

.section-divider--center { margin-left: auto; margin-right: auto; }

.gold-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--safe-orange), var(--safe-blue));
    border-radius: 4px;
    margin: 16px 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 48px);
}

.section-header .section-lead { margin: 0 auto; }

.section-header + .split-grid,
.section-header + .pilares-grid,
.section-header + .marcas-grid {
    margin-top: 0;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--safe-orange);
    color: var(--safe-white);
    box-shadow: 0 8px 24px rgba(240, 141, 4, 0.28);
}

.btn-primary:hover {
    background: #d67d03;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--safe-navy);
    color: var(--safe-white);
}

.btn-secondary:hover {
    background: var(--safe-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--safe-navy);
    border-color: var(--safe-navy);
}

.btn-outline:hover {
    background: var(--safe-navy);
    color: var(--safe-white);
}

.btn-ghost-light {
    background: rgba(255,255,255,0.12);
    color: var(--safe-white);
    border-color: rgba(255,255,255,0.35);
}

.btn-ghost-light:hover { background: var(--safe-white); color: var(--safe-navy); }

/* Top bar */
.top-bar {
    background: var(--safe-navy);
    color: var(--safe-white);
    font-size: 12px;
    font-weight: 600;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
}

.top-bar--social-only {
    justify-content: flex-end;
}

.top-bar-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
}

.top-bar a { color: var(--safe-white); opacity: 0.92; }
.top-bar a:hover { opacity: 1; color: var(--safe-amber); }

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    font-size: 14px;
}

.top-bar-social a:hover { background: var(--safe-orange); }

.top-bar-sep { opacity: 0.35; }

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--safe-white);
    box-shadow: 0 4px 24px rgba(0, 51, 128, 0.06);
}

.header-main {
    padding-top: env(safe-area-inset-top, 0px);
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo img { height: 52px; width: auto; }

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border: none;
    background: var(--safe-off);
    color: var(--safe-navy);
    border-radius: var(--radius-sm);
    font-size: 20px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

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

.nav-link {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--safe-navy);
    border-radius: var(--radius-sm);
}

.nav-link:hover,
.nav-link.active {
    color: var(--safe-orange);
    background: rgba(232, 117, 26, 0.08);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

body.nav-open header {
    z-index: 10050;
}

/* Hero home */
.hero-home {
    position: relative;
    overflow: hidden;
    background: var(--safe-teal);
    color: var(--safe-white);
}

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

.hero-home__content {
    padding: 64px 0;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-home__brand {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--safe-amber);
    margin-bottom: 16px;
}

.hero-home h1 {
    font-size: clamp(32px, 6vw, 54px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    max-width: 640px;
}

.hero-home h1 span { color: var(--safe-amber); }

.hero-home__text {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-home__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-home__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.hero-home__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.85;
}

.hero-home__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--safe-teal) 0%, rgba(26, 46, 71, 0.75) 42%, rgba(26, 46, 71, 0.25) 62%, transparent 100%);
}

.hero-deco {
    position: absolute;
    pointer-events: none;
}

.hero-deco--bars {
    top: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
    transform: rotate(-12deg);
}

.hero-deco--bars span {
    display: block;
    width: 12px;
    height: 72px;
    background: var(--safe-navy);
    border-radius: 4px;
}

.hero-deco--bars span:nth-child(2) { height: 96px; background: var(--safe-orange); }
.hero-deco--bars span:nth-child(3) { height: 60px; }

.hero-deco--tri {
    bottom: 40px;
    left: 24px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 36px solid var(--safe-orange);
}

/* Page hero */
.page-hero {
    position: relative;
    padding: 72px 0;
    background: var(--safe-navy);
    color: var(--safe-white);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.15), rgba(27, 75, 122, 0.5)),
        var(--hero-image, none);
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    max-width: 800px;
}

.page-hero p {
    margin-top: 16px;
    font-size: 18px;
    max-width: 640px;
    opacity: 0.9;
}

.page-hero .section-eyebrow {
    color: var(--safe-amber);
}

/* Cards pilares */
.pilares-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.pilar-card {
    background: var(--safe-white);
    border: 1px solid var(--safe-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pilar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 117, 26, 0.35);
}

.pilar-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--safe-navy), var(--safe-blue));
    color: var(--safe-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.pilar-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 10px;
}

.pilar-card p { color: var(--safe-gray); font-size: 15px; }

/* Page rhythm — meio-padding evita gap duplo entre seções vizinhas */
.split-section,
.highlights-band,
.cta-band,
.b2b-section,
.product-essential,
.product-detailed-info,
.related-products {
    padding-top: calc(var(--section-y) / 2);
    padding-bottom: calc(var(--section-y) / 2);
}

.hero-home + .split-section,
.hero-home + .b2b-section,
.page-hero + .split-section,
.page-hero + .b2b-section,
.split-section--after-hero {
    padding-top: var(--section-y-after-hero);
}

main > :first-child.product-essential {
    padding-top: var(--section-y);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--split-gap);
    align-items: center;
}

.split-grid__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.split-grid__content .section-divider {
    margin-bottom: 20px;
}

.split-grid__content .section-lead + .section-text,
.split-grid__content .section-text:last-child {
    margin-bottom: 0;
}

.split-grid__media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split-grid__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center center;
}

.split-grid__media--right img {
    object-position: center left;
}

@media (max-width: 767px) {
    .split-grid--media-last .split-grid__media {
        order: 2;
    }
}

/* Destaques (ex-stats-band) */
.highlights-band {
    background: var(--safe-off);
    border-top: 1px solid var(--safe-border);
    border-bottom: 1px solid var(--safe-border);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.highlight-card {
    background: var(--safe-white);
    border: 1px solid var(--safe-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}

.highlight-card:hover {
    border-color: rgba(240, 141, 4, 0.35);
    box-shadow: var(--shadow);
}

.highlight-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(240, 141, 4, 0.12);
    color: var(--safe-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.highlight-card h3 {
    font-size: 18px;
    color: var(--safe-navy);
    margin-bottom: 8px;
    line-height: 1.25;
}

.highlight-card p {
    font-size: 15px;
    color: var(--safe-gray);
    line-height: 1.6;
    margin: 0;
}

/* Marcas teaser */
.marcas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.marca-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background: var(--safe-white);
    border-radius: var(--radius);
    border: 1px solid var(--safe-border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.marca-card__img {
    background: var(--safe-off);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marca-card__img img { max-height: 200px; object-fit: contain; }

.marca-card__body { padding: 28px 28px 32px; }

.marca-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--safe-orange);
    margin-bottom: 10px;
}

.marca-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--safe-navy);
    margin-bottom: 12px;
}

.marca-card p { color: var(--safe-gray); margin-bottom: 20px; }

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--safe-navy) 0%, var(--safe-blue) 100%);
    color: var(--safe-white);
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-band p {
    max-width: 640px;
    margin: 0 auto 28px;
    opacity: 0.9;
    font-size: 17px;
}

/* Valores / lista */
.values-list {
    display: grid;
    gap: 14px;
}

@media (min-width: 768px) {
    .values-list { gap: 16px; }
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--safe-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--safe-border);
}

.value-item i {
    color: var(--safe-orange);
    font-size: 20px;
    margin-top: 2px;
}

.value-item strong {
    display: block;
    color: var(--safe-navy);
    margin-bottom: 4px;
}

.value-item span { color: var(--safe-gray); font-size: 14px; }

/* Produtos / catálogo */
.split-section[id],
.split-section [id],
.cta-band[id],
.b2b-section [id],
.form-box[id] {
    scroll-margin-top: var(--header-offset, 140px);
}

#catalogo-produtos {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 32px);
    scroll-margin-top: var(--header-offset, 140px);
}

.linha-section {
    padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 36px);
    scroll-margin-top: var(--header-offset, 140px);
    border-radius: var(--radius);
    border: 1px solid var(--safe-border);
    background: var(--safe-white);
}

.linha-section:nth-child(even) {
    background: var(--safe-off);
    border-color: rgba(221, 229, 239, 0.65);
}

.linha-header {
    margin-bottom: clamp(28px, 4vw, 40px);
}

.linha-header h2,
.linha-header h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: var(--safe-navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.linha-badge,
.linha-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--safe-orange);
    margin-bottom: 14px;
}

.linha-header p,
.linha-desc {
    color: var(--safe-gray);
    max-width: 800px;
    font-size: 16px;
    line-height: 1.7;
}

.catalogo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.catalogo-card {
    background: var(--safe-white);
    border-radius: var(--radius);
    border: 1px solid var(--safe-border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    transition: var(--transition);
}

.catalogo-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.catalogo-card__img {
    background: var(--safe-off);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.catalogo-card__img img { max-height: 180px; object-fit: contain; }

.catalogo-card__body { padding: 24px; }

.catalogo-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 8px;
}

.catalogo-card p { font-size: 14px; color: var(--safe-gray); margin-bottom: 16px; }

.abas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: clamp(24px, 4vw, 36px);
}

.aba-link {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--safe-navy);
    background: var(--safe-white);
    border: 2px solid var(--safe-border);
}

.aba-link:hover,
.aba-link.active {
    background: var(--safe-navy);
    color: var(--safe-white);
    border-color: var(--safe-navy);
}

/* Produto single */
.product-essential-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.main-product-image {
    background: var(--safe-off);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    border: 1px solid var(--safe-border);
}

.main-product-image img { max-height: 360px; object-fit: contain; }

.product-meta-box h1 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: var(--safe-navy);
    margin: 12px 0 16px;
}

.product-linha-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--safe-orange);
}

.product-destaque {
    font-size: 17px;
    color: var(--safe-gray);
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid var(--safe-orange);
}

.product-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    border-bottom: 2px solid var(--safe-border);
    margin-bottom: 24px;
}

.product-tab-btn {
    padding: 14px 20px;
    border: none;
    background: none;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    color: var(--safe-gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.product-tab-btn.active {
    color: var(--safe-navy);
    border-bottom-color: var(--safe-orange);
}

.product-tab-panel { display: none; }
.product-tab-panel.active { display: block; }
.product-tab-panel p { margin-bottom: 14px; color: var(--safe-gray); }

.product-nutricao-img img { border-radius: var(--radius-sm); cursor: zoom-in; }

.embalagens-grid,
.product-embalagens {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-embalagens-section {
    padding-top: calc(var(--section-y) / 2);
    padding-bottom: calc(var(--section-y) / 2);
}

.product-embalagens-title {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 800;
    color: var(--safe-navy);
    margin-bottom: 0;
}

.product-embalagens img {
    width: 100%;
    border-radius: var(--radius-sm);
    background: var(--safe-off);
    padding: 12px;
    object-fit: contain;
    cursor: zoom-in;
}

.embalagem-item {
    background: var(--safe-off);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--safe-navy);
}

.embalagem-item img { margin: 0 auto 8px; max-height: 80px; }

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.related-card {
    background: var(--safe-white);
    border: 1px solid var(--safe-border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.related-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: var(--safe-off);
    padding: 16px;
}

.related-card h4 { padding: 16px 16px 4px; color: var(--safe-navy); }
.related-card span { font-size: 12px; color: var(--safe-orange); font-weight: 600; }
.related-card .btn { margin-top: 12px; }

/* B2B / forms */
.b2b-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
    align-items: start;
}

.form-box {
    background: var(--safe-white);
    border: 1px solid var(--safe-border);
    border-radius: var(--radius);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: var(--shadow);
}

.form-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--safe-navy);
    margin-bottom: 10px;
    line-height: 1.25;
}

.form-subtitle {
    color: var(--safe-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--safe-navy);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--safe-border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 16px;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--safe-orange);
}

.form-control:focus-visible {
    outline: 2px solid var(--safe-orange);
    outline-offset: 2px;
}

.form-required {
    color: var(--safe-orange);
    font-weight: 700;
}

.form-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 20px;
    min-width: 0;
}

.form-fieldset .interest-title {
    margin-bottom: 14px;
    padding: 0;
}

.form-box button[type="submit"]:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

textarea.form-control { min-height: 120px; resize: vertical; }

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

.checkbox-grid { display: grid; gap: 12px; }

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--safe-gray);
    cursor: pointer;
}

.interest-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--safe-navy);
    margin-bottom: 14px;
}

.form-box .btn-primary {
    margin-top: 8px;
}

.form-notice {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--safe-gray);
}

.b2b-benefits {
    padding: clamp(28px, 4vw, 40px);
    background: var(--safe-white);
    border: 1px solid var(--safe-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.b2b-benefits .section-divider {
    margin-bottom: 24px;
}

.vantagem-row {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--safe-border);
}

.vantagem-row:first-of-type {
    padding-top: 0;
}

.vantagem-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.vantagem-row i {
    flex-shrink: 0;
    color: var(--safe-orange);
    font-size: 22px;
    margin-top: 4px;
}

.vantagem-row h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.vantagem-row p {
    font-size: 14px;
    color: var(--safe-gray);
    line-height: 1.65;
}

/* Contato */
.contato-canais {
    max-width: 720px;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--split-gap);
    align-items: start;
}

.canal-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.canal-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(32, 76, 116, 0.08);
    color: var(--safe-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.canal-detalhes strong {
    display: block;
    color: var(--safe-navy);
    margin-bottom: 4px;
}

.canal-detalhes span,
.canal-detalhes a { color: var(--safe-gray); font-size: 14px; }
.canal-detalhes a:hover { color: var(--safe-orange); }

.whatsapp-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--safe-off);
    border-radius: var(--radius-sm);
    border: 1px solid var(--safe-border);
    transition: var(--transition);
}

.whatsapp-card:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.06);
}

.whatsapp-card i { font-size: 24px; color: #25d366; }

.google-maps-frame {
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--safe-border);
}

.google-maps-frame iframe { width: 100%; height: 280px; border: 0; }

.social-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.social-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    background: var(--safe-navy);
    color: var(--safe-white);
    font-size: 14px;
    font-weight: 600;
}

.social-card:hover { background: var(--safe-blue); }

/* Footer */
footer {
    background: var(--safe-dark);
    color: rgba(255,255,255,0.82);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
}

.footer-logo {
    max-width: 280px;
}

.footer-logo__link {
    display: inline-block;
    margin-bottom: 20px;
    line-height: 0;
}

.footer-logo__link:hover .footer-logo__mark {
    opacity: 0.92;
}

.footer-logo__mark {
    display: block;
    width: min(200px, 100%);
    height: auto;
    object-fit: contain;
    object-position: left center;
    transition: opacity var(--transition);
}

.footer-logo p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--safe-amber);
    margin-bottom: 16px;
}

.footer-links li { margin-bottom: 10px; font-size: 14px; word-break: break-word; }
.footer-links a:hover { color: var(--safe-amber); }

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-social a:hover { background: var(--safe-orange); color: var(--safe-white); }

.footer-col .footer-selo {
    margin-top: 18px;
}

.footer-selo img {
    display: block;
    height: 44px;
    width: auto;
    max-width: min(167px, 100%);
    object-fit: contain;
    object-position: left center;
}

footer .footer-selo img {
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.footer-credit {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.footer-credit a {
    color: rgba(255,255,255,0.65);
    text-decoration: underline;
}

/* WhatsApp widget */
.wa-widget {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: calc(max(20px, env(safe-area-inset-bottom)) + var(--wa-kb-offset, 0px));
    z-index: 9999;
    font-family: var(--font);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.wa-widget__panel {
    width: min(360px, calc(100vw - 32px));
    background: var(--safe-white);
    border-radius: 18px;
    border: 1px solid rgba(32, 76, 116, 0.1);
    box-shadow: 0 24px 64px rgba(26, 46, 71, 0.24);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.97);
    transform-origin: bottom right;
    pointer-events: none;
    transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s;
}

.wa-widget.is-open .wa-widget__panel {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.wa-widget__header {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    color: var(--safe-white);
    padding: 22px 20px 20px;
    position: relative;
}

.wa-widget__header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.14) 0%, transparent 55%);
    pointer-events: none;
}

.wa-widget__title {
    position: relative;
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.wa-widget__subtitle {
    position: relative;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.92;
}

.wa-widget__list {
    list-style: none;
    margin: 0;
    padding: 8px;
    max-height: min(340px, 52vh);
    overflow-y: auto;
}

.wa-widget__list li {
    margin: 0;
}

.wa-widget__list li + li {
    margin-top: 2px;
}

.wa-widget__contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background var(--transition), transform var(--transition);
}

.wa-widget__contact:hover {
    background: var(--safe-off);
    transform: translateX(2px);
}

.wa-widget__avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.wa-widget__info {
    flex: 1;
    min-width: 0;
}

.wa-widget__info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--safe-navy);
    line-height: 1.3;
}

.wa-widget__info span {
    display: block;
    font-size: 12px;
    color: var(--safe-gray);
    margin-top: 2px;
}

.wa-widget__status {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22);
}

.wa-widget__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    background: #25d366;
    color: var(--safe-white);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
    transition: transform var(--transition), box-shadow var(--transition), width var(--transition), height var(--transition), padding var(--transition), border-radius var(--transition);
}

.wa-widget__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.48);
}

.wa-widget__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.wa-widget__toggle-text {
    white-space: nowrap;
}

.wa-icon--close { display: none; }

.wa-widget.is-open .wa-widget__toggle {
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
}

.wa-widget.is-open .wa-icon--open { display: none; }
.wa-widget.is-open .wa-icon--close { display: inline-flex; }
.wa-widget.is-open .wa-widget__toggle-text { display: none; }

@media (max-width: 480px) {
    .wa-widget__toggle-text { display: none; }

    .wa-widget__toggle {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
    }

    .wa-widget.is-open .wa-widget__toggle-text { display: none; }
}

/* Lightbox */
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.image-lightbox.is-open { opacity: 1; pointer-events: auto; }

.image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.9);
}

.image-lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 92vw;
    max-height: 90vh;
    margin: 0;
}

.image-lightbox__content img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.image-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--safe-white);
    color: var(--safe-navy);
    font-size: 20px;
    cursor: pointer;
}

body.lightbox-open { overflow: hidden; }
.img-lightbox { cursor: zoom-in; }

/* Aliases e catálogo JS */
.btn-gold { background: var(--safe-orange); color: var(--safe-white); box-shadow: 0 8px 24px rgba(240, 141, 4, 0.28); }
.btn-gold:hover { background: #d67d03; transform: translateY(-2px); }
.btn-blue { background: var(--safe-navy); color: var(--safe-white); }
.btn-blue:hover { background: var(--safe-blue); transform: translateY(-2px); }

.hidden { display: none !important; }

.grid-produtos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
}

.card-gourmet {
    background: var(--safe-white);
    border-radius: var(--radius);
    border: 1px solid var(--safe-border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    transition: var(--transition);
}

.card-gourmet:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.card-gourmet--simple {
    display: flex;
    flex-direction: column;
}

.card-gourmet--simple .card-img-block {
    order: 1;
    min-height: 140px;
    padding: 16px;
    flex: 1 1 auto;
}

.card-gourmet--simple .card-img-block img {
    max-height: 120px;
}

.card-gourmet--simple .card-info {
    order: 2;
    padding: 12px 14px 16px;
    text-align: center;
    border-top: 1px solid var(--safe-border);
    background: var(--safe-white);
}

.card-gourmet--simple .card-info h3 {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.35;
}

.linha-saiba-mais {
    margin-top: clamp(24px, 4vw, 32px);
    padding-top: clamp(20px, 3vw, 28px);
    border-top: 1px solid var(--safe-border);
    display: flex;
    justify-content: center;
    text-align: center;
}

.linha-saiba-mais .btn {
    width: 100%;
}

.card-img-block {
    background: var(--safe-off);
    padding: clamp(24px, 4vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.card-img-block img { max-height: 180px; object-fit: contain; }

.card-info {
    padding: clamp(24px, 4vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.card-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-info > p {
    font-size: 14px;
    color: var(--safe-gray);
    margin-bottom: 16px;
    line-height: 1.65;
}

.card-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--safe-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-specs span {
    display: block;
    padding: 2px 0;
}

.card-specs span i { color: var(--safe-orange); margin-right: 8px; }

.card-info .btn { align-self: flex-start; }

.card-info .btn + .btn { margin-top: 12px; }

.b2b-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--split-gap);
    align-items: center;
}

.b2b-intro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 40px);
    background: var(--safe-white);
    border: 1px solid var(--safe-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.b2b-intro-logo img {
    max-width: min(280px, 100%);
    margin: 0 auto;
}

.testemunhos-b2b { padding-block: var(--section-y); background: var(--safe-off); }
.testemunhos-b2b-title { text-align: center; font-size: 28px; font-weight: 800; color: var(--safe-navy); margin-bottom: 8px; }

.testemunhos-b2b-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.quote-b2b-card {
    background: var(--safe-white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--safe-border);
    box-shadow: var(--shadow);
}

.quote-b2b-card p { font-style: italic; color: var(--safe-gray); margin-bottom: 12px; }
.quote-b2b-author { font-size: 13px; font-weight: 700; color: var(--safe-navy); }

.product-detailed-info { background: var(--safe-off); }
.related-title { font-size: 24px; font-weight: 800; color: var(--safe-navy); margin-bottom: 24px; }

.collection-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--safe-orange);
}

.spec-meta-group { margin: 20px 0 24px; }
.spec-meta-item { font-size: 14px; color: var(--safe-gray); margin-bottom: 8px; }
.spec-meta-item strong { color: var(--safe-navy); }

@media (max-width: 479px) {
    .grid-produtos { grid-template-columns: 1fr; }
}

@media (min-width: 640px) {
    .testemunhos-b2b-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
    .grid-produtos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .card-gourmet:not(.card-gourmet--simple) { grid-template-columns: minmax(200px, 240px) 1fr; }
    .b2b-intro-grid { grid-template-columns: 1.2fr 0.8fr; }
}

/* Responsive */
@media (min-width: 640px) {
    .catalogo-grid { grid-template-columns: repeat(2, 1fr); }
    .pilares-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .whatsapp-cards { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
    .menu-toggle { display: none; }
    .nav-overlay { display: none !important; }
}

@media (min-width: 768px) {
    .hero-home__content {
        min-height: 580px;
    }

    .hero-home__visual {
        left: 38%;
    }

    .hero-home__visual::after {
        background: linear-gradient(90deg, var(--safe-teal) 0%, rgba(26, 46, 71, 0.5) 18%, transparent 42%);
    }

    .split-grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(40px, 5vw, 64px);
    }
    .marca-card { grid-template-columns: 280px 1fr; }
    .catalogo-card { grid-template-columns: 200px 1fr; }
    .product-essential-grid { grid-template-columns: 1fr 1fr; }
    .b2b-grid { grid-template-columns: 1.1fr 0.9fr; }
    .contato-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
    .pilares-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
    .header-main {
        min-height: 56px;
    }

    .header-main .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        justify-content: flex-start;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 12px;
    }

    .logo {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .menu-toggle {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        position: relative;
        z-index: 10060;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        font-size: 20px;
        background: var(--safe-navy);
        color: var(--safe-white);
    }

    nav {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 0;
        height: 0;
        overflow: visible;
        pointer-events: none;
        position: static;
    }

    .nav-overlay {
        z-index: 10040;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 88vw);
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--header-main-height, 64px) + 12px) 20px 24px;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
        background: var(--safe-white);
        box-shadow: -8px 0 32px rgba(0,0,0,0.12);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 10055;
        gap: 6px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
    }

    .nav-menu::before {
        content: 'Menu';
        display: block;
        padding: 0 14px 8px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--safe-gray);
        border-bottom: 1px solid rgba(0, 51, 128, 0.08);
        margin-bottom: 4px;
    }

    .nav-menu.open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-overlay { display: block; }

    .nav-menu li { width: 100%; }

    .nav-link {
        padding: 14px 14px;
        min-height: 48px;
        display: flex;
        align-items: center;
        font-size: 15px;
        border-radius: var(--radius-sm);
    }

    body.nav-open .menu-toggle {
        background: var(--safe-orange);
        color: var(--safe-white);
        box-shadow: 0 0 0 2px var(--safe-white), 0 4px 12px rgba(232, 117, 26, 0.35);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .top-bar {
        padding: 6px 0;
        font-size: 11px;
    }

    .top-bar .container {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .top-bar-sep { display: none; }

    .top-bar-contacts {
        flex: 1;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .top-bar-contacts::-webkit-scrollbar { display: none; }

    .top-bar-contacts a {
        white-space: nowrap;
        flex-shrink: 0;
        min-height: 28px;
        font-size: 11px;
    }

    .top-bar-social {
        flex-shrink: 0;
    }

    .top-bar-social a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .nav-menu {
        padding-top: calc(var(--header-offset, 100px) + 12px);
    }
}

/* Mobile UX — responsividade, toque e acessibilidade básica */
body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
}

body[data-page="contato"] {
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
}

.btn,
.aba-link,
.wa-widget__contact,
.product-tab-btn,
.nav-link,
.whatsapp-card,
.social-card {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

body.nav-open .wa-widget,
body.lightbox-open .wa-widget {
    visibility: hidden;
    pointer-events: none;
}

.btn:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible,
.aba-link:focus-visible,
.wa-widget__toggle:focus-visible,
.wa-widget__contact:focus-visible,
.image-lightbox__close:focus-visible,
.product-tab-btn:focus-visible,
.footer-links a:focus-visible,
.top-bar a:focus-visible {
    outline: 2px solid var(--safe-orange);
    outline-offset: 2px;
}

.btn {
    min-height: 48px;
}

.btn-whatsapp {
    background: transparent;
    color: #128c7e;
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.08);
    transform: translateY(-2px);
}

.form-control {
    min-height: 48px;
}

.checkbox-item {
    min-height: 44px;
    padding: 6px 0;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: var(--safe-orange);
}

.whatsapp-card {
    min-height: 56px;
}

.product-tab-btn {
    min-height: 44px;
}

@media (max-width: 767px) {
    .form-control,
    textarea.form-control {
        font-size: 16px;
    }

    .hero-home__content {
        padding: 40px 0 48px;
        min-height: auto;
    }

    .hero-home h1 {
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-home__text,
    .section-lead {
        font-size: 16px;
    }

    .hero-deco--tri {
        display: none;
    }

    .hero-deco--bars {
        opacity: 0.45;
    }

    .page-hero {
        padding: 48px 0;
    }

    .top-bar {
        display: none;
    }

    .header-main .container {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .logo img {
        height: 40px;
    }

    .hero-home__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-home__actions .btn,
    .cta-band .btn,
    .form-box .btn-primary,
    .form-box .btn,
    .product-actions .btn,
    .product-meta-box .btn,
    .card-info .btn,
    .related-card .btn,
    .marca-card__body .btn {
        width: 100%;
    }

    .wa-widget__panel {
        max-height: calc(100dvh - 120px);
    }

    .wa-widget__list {
        max-height: min(280px, 40vh);
    }

    .abas-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        padding-bottom: 6px;
        margin-inline: -4px;
        padding-inline: 4px;
    }

    .abas-container::-webkit-scrollbar {
        display: none;
    }

    .abas-container .aba-link {
        flex-shrink: 0;
        scroll-snap-align: start;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

@media (max-width: 479px) {
    .menu-toggle {
        z-index: 10060;
    }

    .nav-menu {
        width: 100%;
        max-width: 100%;
    }

    .embalagens-grid,
    .product-embalagens {
        grid-template-columns: 1fr;
    }

    .product-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .product-tabs::-webkit-scrollbar {
        display: none;
    }

    .product-tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .social-card {
        width: 100%;
        justify-content: center;
    }
}
