:root {
    --tq-navy: #0b2545;
    --tq-blue: #075fc8;
    --tq-blue-dark: #0a58ca;
    --tq-cyan: #22b8cf;
    --tq-green: #0d7440;
    --tq-ink: #153352;
    --tq-muted: #526f90;
    --tq-line: #dfe9f5;
    --tq-surface: #ffffff;
    --tq-soft: #f2f7fd;
    --tq-shadow: 0 18px 46px rgba(11, 37, 69, 0.09);
    --tq-radius-sm: 12px;
    --tq-radius: 18px;
    --tq-radius-lg: 24px;
    --color-primary: var(--tq-blue);
    --color-primary-dark: var(--tq-blue-dark);
    --color-text: var(--tq-ink);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 132px;
}

body.site-body {
    background: #f7f9fc;
    color: var(--tq-ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

.site-body h1,
.site-body h2,
.site-body h3,
.site-body h4,
.site-body .brand-text {
    color: var(--tq-navy);
    font-family: Montserrat, Inter, system-ui, sans-serif;
    letter-spacing: -0.025em;
}

.site-body p {
    color: #385775;
}

.site-body a,
.site-body button,
.site-body input,
.site-body select,
.site-body textarea,
.site-body summary {
    -webkit-tap-highlight-color: transparent;
}

.site-body :focus-visible {
    outline: 3px solid rgba(13, 110, 253, 0.35);
    outline-offset: 3px;
}

.skip-link {
    background: var(--tq-navy);
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-weight: 800;
    left: 16px;
    padding: 12px 18px;
    position: fixed;
    top: 0;
    transform: translateY(-120%);
    transition: transform 0.15s ease;
    z-index: 3000;
}

.skip-link:focus {
    color: #fff;
    transform: translateY(0);
}

/* Cabeçalho público */
.site-header {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(223, 233, 245, 0.92);
    box-shadow: 0 10px 28px rgba(11, 37, 69, 0.06);
    padding: 0;
}

.site-header .navbar,
.site-header .navbar-glass {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 10px 0;
}

.site-header .header-inner {
    gap: 12px;
    max-width: 1280px;
}

.site-header .navbar-brand {
    color: var(--tq-navy);
    gap: 10px;
    margin: 0;
    min-width: 0;
    padding: 0;
}

.site-header .navbar-brand img {
    height: 48px;
    width: 36px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.navbar-brand .brand-copy .brand-text {
    color: var(--tq-navy);
    font-size: 1.02rem;
    font-weight: 800;
}

.brand-copy small {
    color: var(--tq-muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    margin-top: 5px;
    text-transform: uppercase;
}

.site-header .header-search {
    flex: 1 1 300px;
    margin: 0;
    max-width: 350px;
    min-width: 220px;
}

.site-header .header-search input {
    background: var(--tq-soft);
    border: 1.5px solid var(--tq-line);
    border-radius: var(--tq-radius-sm);
    box-shadow: none;
    color: var(--tq-navy);
    font-size: 0.94rem;
    height: 48px;
    padding-left: 43px;
    padding-right: 48px;
}

.site-header .header-search input::placeholder {
    color: #6682a2;
    opacity: 1;
}

.site-header .header-search input:focus {
    background: #fff;
    border-color: rgba(13, 110, 253, 0.55);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: 0;
}

.site-header .header-search-icon {
    color: #6886a7;
    left: 15px;
}

.site-header .header-search-btn {
    background: var(--tq-blue);
    border-radius: 9px;
    box-shadow: none;
    height: 38px;
    margin-left: -45px;
    width: 38px;
}

.site-header .header-search-btn:hover {
    background: var(--tq-blue-dark);
    box-shadow: none;
    transform: none;
}

.site-header .navbar-nav {
    align-items: center;
    gap: 2px;
}

.site-header .navbar-glass .navbar-nav .nav-link {
    border-radius: 9px;
    color: #365573;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.66rem 0.55rem;
}

.site-header .navbar-nav .nav-link::after {
    display: none;
}

.site-header .navbar-nav .nav-link.active,
.site-header .navbar-nav .nav-link:hover {
    background: #edf5ff;
    color: var(--tq-blue);
}

.site-header .header-cart-link {
    align-items: center;
    border: 1.5px solid var(--tq-line);
    display: flex;
    min-height: 44px;
    white-space: nowrap;
}

.site-header .header-cart-link .cart-badge {
    background: var(--tq-blue);
    margin-left: 4px;
}

.site-header .navbar-toggler {
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--tq-line);
    border-radius: 10px;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    padding: 8px;
    width: 44px;
}

/* Estrutura e superfícies compartilhadas */
.site-main {
    max-width: 1180px;
    padding-bottom: 48px;
}

.site-main-wide {
    max-width: 1240px;
}

.site-main .card,
.site-main .filters-shell,
.site-main .privacy-content,
.site-main .contact-card,
.site-main .product-detail-buybox {
    border-color: var(--tq-line);
    border-radius: var(--tq-radius);
    box-shadow: 0 12px 34px rgba(11, 37, 69, 0.06);
}

.products-header,
.privacy-hero,
.kits-hero {
    background: linear-gradient(135deg, #fff 0%, #f2f8ff 100%);
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius);
    box-shadow: 0 12px 34px rgba(11, 37, 69, 0.06);
    padding: clamp(20px, 3vw, 30px);
}

.products-page .products-header {
    margin-bottom: 20px !important;
}

.products-page .products-sidebar,
.products-page .filters-shell {
    background: #fff;
}

.products-page .products-category-link {
    border-radius: 10px;
    min-height: 40px;
    padding: 9px 11px;
}

.products-page .products-category-link.active {
    background: var(--tq-blue);
    color: #fff;
}

.product-card,
.product-card-catalog {
    border-color: var(--tq-line);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(11, 37, 69, 0.06);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-card:hover,
.product-card-catalog:hover {
    border-color: rgba(13, 110, 253, 0.28);
    box-shadow: 0 18px 38px rgba(11, 37, 69, 0.11);
    transform: translateY(-3px);
}

.product-card .product-card-image,
.product-card-catalog .product-card-image {
    background: #f7faff;
    border-color: #e8eff8;
    border-radius: 12px;
}

.product-card .product-card-title a {
    color: var(--tq-navy);
}

.product-card .product-card-current,
.product-card .fw-bold {
    color: #087346;
}

.product-card-catalog .product-card-add-btn {
    background: transparent;
    border-color: var(--tq-blue);
    border-radius: 10px;
    color: var(--tq-blue);
}

.product-card-catalog .product-card-add-btn:hover,
.product-card-catalog .product-card-add-btn:focus-visible {
    background: var(--tq-blue);
    border-color: var(--tq-blue);
    color: #fff;
}

.product-card:not(.product-card-catalog) .product-card-add-btn {
    border-radius: 10px;
}

.product-card:not(.product-card-catalog) .product-card-add-btn.btn-primary {
    background: var(--tq-blue);
    border-color: var(--tq-blue);
    color: #fff;
}

.product-card:not(.product-card-catalog) .product-card-add-btn.btn-primary:hover,
.product-card:not(.product-card-catalog) .product-card-add-btn.btn-primary:focus-visible {
    background: var(--tq-blue-dark);
    border-color: var(--tq-blue-dark);
    color: #fff;
}

.product-card .product-card-add-btn i,
.product-card .product-card-add-btn span {
    color: inherit;
}

.btn.btn-primary,
.btn.btn-cta {
    background: var(--tq-blue);
    border-color: var(--tq-blue);
    border-radius: 12px;
    box-shadow: none;
    font-weight: 800;
}

.btn.btn-primary:hover,
.btn.btn-cta:hover {
    background: var(--tq-blue-dark);
    border-color: var(--tq-blue-dark);
}

/* Home */
.site-page-home .site-main {
    margin-top: 0 !important;
    padding-top: 1px;
}

.home-storefront {
    --store-blue: var(--tq-blue);
    --store-green: var(--tq-green);
    --store-ink: var(--tq-navy);
    --store-muted: var(--tq-muted);
    --store-line: var(--tq-line);
}

.home-store-hero {
    background: radial-gradient(circle at 18% 12%, rgba(34, 184, 207, 0.11), transparent 40%), radial-gradient(circle at 92% 5%, rgba(13, 110, 253, 0.11), transparent 44%), linear-gradient(180deg, #f4f9ff 0%, #fff 100%);
    border: 1px solid #e5eef8;
    border-radius: var(--tq-radius-lg);
    box-shadow: var(--tq-shadow);
    min-height: 520px;
    overflow: hidden;
}

.home-store-hero-grid {
    gap: clamp(30px, 4vw, 52px);
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
    min-height: 520px;
    padding: clamp(34px, 5vw, 58px);
}

.home-store-kicker {
    background: #e7f6ec;
    border: 1px solid rgba(22, 138, 75, 0.12);
    border-radius: 999px;
    color: #146c43;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    padding: 8px 13px;
    text-transform: none;
}

.home-store-hero h1 {
    color: var(--tq-navy);
    font-size: clamp(2.4rem, 4.5vw, 3.65rem);
    font-weight: 800;
    letter-spacing: -0.048em;
    line-height: 1.05;
    margin: 18px 0 18px;
    max-width: 720px;
    text-shadow: none;
}

.home-store-hero h1 span {
    color: var(--tq-blue);
}

.home-store-hero-copy > p {
    color: #43617f;
    font-size: clamp(1.02rem, 1.7vw, 1.2rem);
    line-height: 1.6;
    max-width: 650px;
    text-shadow: none;
}

.home-store-actions {
    gap: 12px;
}

.home-store-actions .btn {
    border-radius: 13px;
    box-shadow: 0 12px 26px -16px rgba(11, 37, 69, 0.65);
    font-size: 1rem;
    min-height: 54px;
    padding: 0 22px;
}

.home-store-hero .btn-whatsapp {
    background: #08783b;
    border-color: #08783b;
    color: #fff;
}

.home-store-hero .btn-whatsapp:hover {
    background: #05652f;
    border-color: #05652f;
    color: #fff;
}

.home-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.home-hero-trust a,
.home-hero-trust span {
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--tq-line);
    border-radius: 999px;
    color: #294968;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 750;
    gap: 7px;
    min-height: 38px;
    padding: 7px 12px;
}

.home-hero-trust a:hover {
    border-color: rgba(13, 110, 253, 0.4);
    color: var(--tq-blue);
}

.home-hero-trust .bi-star-fill {
    color: #f5a524;
}

.home-hero-trust .bi-truck,
.home-hero-trust .bi-credit-card {
    color: var(--tq-blue);
}

.home-hero-category-nav {
    margin-top: 14px;
}

.home-hero-category-nav a {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: 10px;
    color: #315170;
}

.home-hero-category-nav a:hover {
    background: #edf5ff;
    border-color: rgba(13, 110, 253, 0.35);
    color: var(--tq-blue);
}

.home-store-panel {
    border: 1px solid var(--tq-line);
    border-radius: 20px;
    box-shadow: 0 24px 50px -30px rgba(11, 37, 69, 0.38);
}

.home-store-panel-label {
    color: #146c43;
}

.home-hero-product {
    border-color: #e5edf7;
    border-radius: 13px;
}

.home-hero-product-link {
    border-radius: 9px;
}

.benefits-bar {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(11, 37, 69, 0.05);
    margin: 18px 0 54px;
}

.benefits-bar-icon {
    border-radius: 10px;
}

.home-store-section-header {
    margin-bottom: 22px;
    min-width: 0;
}

.home-store-section-header h2 {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    letter-spacing: -0.035em;
}

.home-store-section-header p {
    color: var(--tq-muted);
    line-height: 1.55;
}

.home-store-section-header > a {
    align-items: center;
    border-radius: 9px;
    display: inline-flex;
    min-height: 40px;
    padding: 8px 10px;
}

.home-store-section-header > a:hover {
    background: #edf5ff;
}

.home-category-section,
.home-kits-section,
.home-faq-section {
    margin: 54px 0;
}

.home-problem-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-problem-card {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.05);
    color: var(--tq-navy);
    display: flex;
    flex-direction: column;
    min-height: 218px;
    padding: 21px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.home-problem-card:hover {
    border-color: rgba(13, 110, 253, 0.35);
    box-shadow: 0 17px 34px rgba(11, 37, 69, 0.1);
    color: var(--tq-navy);
    transform: translateY(-3px);
}

.home-problem-card .home-category-icon {
    border-radius: 11px;
    height: 48px;
    margin-bottom: 15px;
    width: 48px;
}

.home-problem-card strong {
    font-family: Montserrat, Inter, sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
}

.home-problem-card small {
    color: var(--tq-muted);
    font-size: 0.87rem;
    line-height: 1.5;
    margin-top: 7px;
}

.home-problem-link {
    align-items: center;
    color: var(--tq-blue);
    display: flex;
    font-size: 0.82rem;
    font-weight: 800;
    gap: 7px;
    margin-top: auto;
    padding-top: 16px;
}

.home-problem-card-green .home-category-icon {
    background: #e8f8ef;
    color: #148044;
}

.home-problem-card-blue .home-category-icon {
    background: #eaf5ff;
    color: #0877d1;
}

.home-problem-card-amber .home-category-icon {
    background: #fff5db;
    color: #a66400;
}

.home-problem-card-violet .home-category-icon {
    background: #f1edff;
    color: #6846c7;
}

.home-kits-section {
    background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 55%, #eefbf5 100%);
    border: 1px solid #dce9f7;
    border-radius: var(--tq-radius-lg);
    padding: clamp(22px, 3.5vw, 38px);
}

.home-kit-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-kit-grid .product-card-catalog {
    background: #fff;
}

.home-kit-grid .product-card-body {
    padding-top: 8px;
}

.home-kit-grid .product-card-title a {
    align-items: center;
    display: inline-flex;
    min-height: 28px;
}

.site-body .product-badge-sale {
    background: #c52834;
}

.home-section-products {
    border: 0;
    border-radius: var(--tq-radius-lg);
    box-shadow: var(--tq-shadow);
    margin: 54px 0 28px;
    padding: clamp(20px, 3vw, 34px);
}

.home-tools-band {
    background: linear-gradient(135deg, var(--tq-navy), #104f87);
    border: 0;
    border-radius: 20px;
    box-shadow: 0 20px 42px rgba(11, 37, 69, 0.15);
    margin: 36px 0 24px;
    padding: clamp(22px, 3vw, 32px);
}

.home-tools-band .home-section-eyebrow,
.home-tools-band h2,
.home-tools-band p {
    color: #fff;
}

.home-tools-band p {
    opacity: 0.82;
}

.home-tools-band .home-tools-icon {
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
}

.home-tools-band .btn-cta {
    background: #fff;
    border-color: #fff;
    color: var(--tq-navy);
    min-height: 48px;
}

.home-tools-band .btn-cta:hover {
    background: #eaf3ff;
    border-color: #eaf3ff;
    color: var(--tq-navy);
}

.home-shopping-steps {
    gap: 15px;
    margin: 36px 0 54px;
}

.home-shopping-steps article {
    border-color: var(--tq-line);
    border-radius: 16px;
    padding: 21px;
}

.home-shopping-steps span {
    border-radius: 10px;
}

.reviews-section {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius-lg);
    box-shadow: var(--tq-shadow);
    margin: 54px 0;
    padding: clamp(22px, 3vw, 38px) 0;
}

.reviews-section .container {
    max-width: none;
    padding-left: clamp(20px, 3vw, 34px);
    padding-right: clamp(20px, 3vw, 34px);
}

.review-card {
    border-color: var(--tq-line);
    border-radius: 15px;
    box-shadow: none;
}

.home-faq-section {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.home-faq-list {
    display: grid;
    gap: 10px;
}

.home-faq-list details {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(11, 37, 69, 0.04);
    overflow: hidden;
}

.home-faq-list summary {
    align-items: center;
    color: var(--tq-navy);
    cursor: pointer;
    display: flex;
    font-weight: 800;
    gap: 16px;
    justify-content: space-between;
    min-height: 58px;
    padding: 15px 18px;
}

.home-faq-list summary::-webkit-details-marker {
    display: none;
}

.home-faq-list summary::marker {
    content: "";
}

.home-faq-list summary i {
    color: var(--tq-blue);
    flex: 0 0 auto;
    transition: transform 0.18s ease;
}

.home-faq-list details[open] summary i {
    transform: rotate(180deg);
}

.home-faq-list details[open] summary {
    border-bottom: 1px solid var(--tq-line);
}

.home-faq-list p {
    line-height: 1.65;
    margin: 0;
    padding: 16px 18px 18px;
}

/* Rodapé e ações flutuantes */
.site-footer {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: var(--tq-navy);
    border-top: 0;
    box-shadow: none;
    color: #bfd1e4;
    margin-top: 24px !important;
    padding: 54px 0 22px;
}

.site-footer > .container {
    max-width: 1240px;
    padding-left: 24px;
    padding-right: 24px;
}

.site-footer .footer-logo,
.site-footer .footer-column h2,
.site-footer .footer-bottom strong {
    color: #fff;
}

.site-footer .footer-brand p,
.site-footer .footer-column li,
.site-footer p {
    color: #bfd1e4;
}

.site-footer a,
.site-footer .footer-legal a {
    color: #d7e9fb;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer .footer-logo img {
    border: 0;
    border-radius: 10px;
}

.site-footer .footer-social a {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.13);
}

.site-footer .footer-contact i {
    color: #62d698;
}

.site-footer .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.floating-fab-stack .instagram-fab,
.floating-fab-stack .cart-fab,
.floating-fab-stack .whatsapp-fab {
    box-shadow: 0 14px 30px rgba(11, 37, 69, 0.2);
}

.cookie-consent-banner {
    background: var(--tq-navy) !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    border-radius: 16px !important;
    max-width: 620px !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-body .cookie-consent-title {
    color: #fff;
}

.site-body .cookie-consent-text {
    color: rgba(248, 250, 252, 0.92);
}

.cookie-consent-text a {
    color: #b9ddff;
    font-weight: 700;
    text-decoration: underline;
}

.cookie-consent-btn {
    border-radius: 9px !important;
    min-height: 40px;
}

.cookie-consent-btn-accept {
    background: #42d17a !important;
    color: #07351d !important;
}

.footer-consent-link {
    background: transparent;
    border: 0;
    color: #d7e9fb;
    font: inherit;
    font-weight: 700;
    padding: 0;
    text-align: left;
}

.footer-consent-link:hover,
.footer-consent-link:focus {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .cookie-consent-banner {
        padding: 12px 13px !important;
    }

    .cookie-consent-title {
        font-size: 0.92rem !important;
        margin-bottom: 0.2rem !important;
    }

    .cookie-consent-text {
        font-size: 0.82rem !important;
        line-height: 1.35 !important;
        margin-bottom: 0.55rem !important;
    }

    .cookie-consent-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-consent-btn {
        min-height: 38px;
        padding: 0.35rem 0.5rem !important;
    }
}

@media (min-width: 1200px) {
    .site-header .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .site-header .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

@media (max-width: 1199.98px) {
    html {
        scroll-padding-top: 160px;
    }

    .site-header .header-inner {
        flex-wrap: wrap;
        min-width: 0;
        width: 100%;
    }

    .site-header .navbar-brand {
        max-width: calc(100% - 58px);
        order: 1;
    }

    .site-header .navbar-toggler {
        display: inline-flex !important;
        margin-left: auto;
        order: 2;
    }

    .site-header .header-search {
        flex: 0 0 100%;
        max-width: none;
        min-width: 0;
        order: 3;
        width: 100%;
    }

    .site-header #mainNav {
        background: #fff;
        border: 1px solid var(--tq-line);
        border-radius: 14px;
        box-shadow: 0 16px 34px rgba(11, 37, 69, 0.1);
        flex-basis: 100%;
        min-width: 0;
        order: 4;
        padding: 8px;
        width: 100%;
    }

    .site-header .navbar-expand-lg .navbar-collapse:not(.show) {
        display: none !important;
    }

    .site-header .navbar-expand-lg .navbar-collapse.show {
        display: block !important;
    }

    .site-header .navbar-expand-lg .navbar-nav {
        align-items: stretch;
        flex-direction: column;
        gap: 2px;
    }

    .site-header .navbar-nav .nav-link {
        min-height: 44px;
        padding: 11px 12px;
    }

    .site-header .header-cart-link {
        justify-content: space-between;
    }

    .home-store-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-store-panel {
        display: block;
        max-width: none;
    }

    .home-problem-grid,
    .home-kit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    body.site-body,
    .site-header,
    .site-main,
    .site-main-wide,
    .home-storefront,
    .home-store-hero,
    .home-store-hero-grid,
    .home-store-hero-copy,
    .home-store-panel {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .site-main,
    .site-main-wide {
        overflow-x: clip;
        padding-left: 14px;
        padding-right: 14px;
    }

    .home-store-hero {
        border-radius: 18px;
        min-height: 0;
    }

    .home-store-hero-grid {
        display: block;
        min-height: 0;
        padding: 28px 20px;
    }

    .home-store-hero h1 {
        font-size: clamp(1.95rem, 9vw, 2.4rem);
        max-width: 100%;
        overflow-wrap: anywhere;
        text-wrap: balance;
    }

    .home-store-section-header {
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
    }

    .home-store-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

    .home-store-actions .btn {
        max-width: 100%;
        min-width: 0;
        width: 100% !important;
    }

    .home-hero-trust,
    .home-hero-category-nav,
    .home-store-panel-top,
    .home-hero-products,
    .home-hero-product,
    .home-hero-product-info {
        max-width: 100%;
        min-width: 0;
    }

    .home-store-panel {
        margin-top: 30px;
        overflow: hidden;
    }

    .home-store-panel-top {
        flex-wrap: wrap;
    }

    .home-hero-product-info strong {
        overflow-wrap: anywhere;
    }

    .home-problem-grid,
    .home-kit-grid {
        grid-template-columns: 1fr;
    }

    .home-problem-card {
        min-height: 190px;
    }

    .home-tools-band {
        align-items: stretch;
    }

    .home-tools-band .btn {
        width: 100%;
    }

    .reviews-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .benefits-bar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefits-bar-item {
        border-bottom: 1px solid var(--tq-line);
        border-right: 1px solid var(--tq-line);
        min-width: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer .footer-legal {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .brand-copy small {
        display: none;
    }

    .navbar-brand .brand-copy .brand-text {
        font-size: 0.94rem;
    }

    .site-header .navbar-brand img {
        height: 43px;
        width: 32px;
    }

    .home-store-actions .btn {
        width: 100%;
    }

    .home-hero-trust a,
    .home-hero-trust span {
        flex: 1 1 100%;
    }

    .home-hero-category-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero-category-nav a {
        justify-content: center;
    }

    .home-store-panel {
        padding: 16px;
    }

    .home-hero-products .home-hero-product:nth-child(n + 3) {
        display: none;
    }

    .home-hero-product {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .home-hero-product-link {
        grid-column: 1 / -1;
        text-align: center;
    }

    .benefits-bar {
        margin-bottom: 42px;
    }

    .home-category-section,
    .home-kits-section,
    .home-faq-section,
    .reviews-section {
        margin: 42px 0;
    }

    .home-kits-section,
    .home-section-products {
        padding: 18px 14px;
    }

    .home-faq-list summary {
        font-size: 0.9rem;
    }

    .cookie-consent-actions {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    .cookie-consent-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Páginas internas — estrutura compartilhada */

.site-main .form-label {
    color: var(--tq-navy);
    font-size: 0.84rem;
    font-weight: 750;
}

.site-main .form-control,
.site-main .form-select {
    background-color: #fff;
    border-color: #cbd9e8;
    border-radius: 11px;
    min-height: 44px;
}

.site-main .form-control:focus,
.site-main .form-select:focus {
    border-color: var(--tq-blue);
    box-shadow: 0 0 0 4px rgba(7, 95, 200, 0.12);
}

.site-main .btn {
    align-items: center;
    border-radius: 11px;
    display: inline-flex;
    font-weight: 750;
    justify-content: center;
    min-height: 42px;
}

.site-main .btn-sm {
    min-height: 38px;
}

.page-eyebrow,
.pool-calculator-kicker,
.page-about-kicker,
.home-section-eyebrow {
    color: var(--tq-blue);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    margin: 0 0 9px;
    text-transform: uppercase;
}

.products-header h1,
.contact-header h1,
.privacy-hero h1,
.faq-hero h1,
.local-page > header h1,
.blog-listing h1 {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 850;
    letter-spacing: -0.04em;
}

/* Catálogo e categorias */
.products-page {
    padding-top: 8px;
}

.products-header {
    align-items: center;
    background:
        radial-gradient(circle at 92% 10%, rgba(34, 184, 207, 0.14), transparent 30%),
        linear-gradient(135deg, #fff 0%, #edf6ff 100%);
    min-height: 132px;
}

.products-header h1 {
    margin: 0;
}

.products-count {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: 999px;
    color: var(--tq-muted) !important;
    font-weight: 700;
    padding: 8px 13px;
}

.products-page .filters-shell {
    border: 1px solid var(--tq-line);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(11, 37, 69, 0.06);
    padding: 16px;
}

.products-page .filters-search {
    min-width: min(100%, 280px);
}

.products-page .input-icon {
    color: #6682a2;
}

.products-page .products-sidebar {
    border: 1px solid var(--tq-line);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(11, 37, 69, 0.055);
    padding: 17px;
    position: sticky;
    top: 102px;
}

.products-page .products-sidebar h2 {
    color: var(--tq-navy);
    font-size: 0.76rem !important;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.products-page .products-category-list {
    display: grid;
    gap: 4px;
}

.products-page .products-category-link {
    align-items: center;
    color: #365573;
    display: flex;
    font-size: 0.88rem;
    font-weight: 700;
    justify-content: space-between;
    text-decoration: none;
}

.products-page .products-category-link:hover {
    background: #edf5ff;
    color: var(--tq-blue);
}

.products-page .products-category-count {
    background: #eef3f8;
    border-radius: 999px;
    color: #55718e;
    font-size: 0.68rem;
    min-width: 24px;
    padding: 3px 6px;
    text-align: center;
}

.products-page .products-category-link.active .products-category-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.products-favorites-toolbar {
    align-items: center;
    display: flex;
    gap: 12px;
}

.products-favorites-filter {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(24, 80, 165, 0.25);
    border-radius: 999px;
    color: #1850a5;
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 800;
    gap: 7px;
    min-height: 38px;
    padding: 6px 11px;
}

.products-favorites-filter:hover,
.products-favorites-filter:focus,
.products-favorites-filter[aria-pressed="true"] {
    background: #fef2f2;
    border-color: #ef4444;
    color: #b91c1c;
}

.products-favorites-count {
    align-items: center;
    background: #edf3fa;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.72rem;
    justify-content: center;
    min-width: 24px;
    padding: 2px 6px;
}

.products-favorites-filter[aria-pressed="true"] .products-favorites-count {
    background: #fee2e2;
}

.products-favorites-hint {
    color: #64748b;
    font-size: 0.78rem;
}

.products-favorites-empty {
    color: #475569;
    font-size: 0.9rem;
}

.products-grid {
    gap: 18px;
}

/* Produto */
.product-detail-layout {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius-lg);
    box-shadow: var(--tq-shadow);
    margin-left: 0;
    margin-right: 0;
    padding: clamp(18px, 3vw, 32px);
}

.product-detail-layout > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

.product-detail-media {
    align-self: flex-start;
    position: sticky;
    top: 102px;
}

.product-gallery-main {
    align-items: center;
    background: linear-gradient(180deg, #fbfdff 0%, #f2f7fc 100%);
    border: 1px solid var(--tq-line);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    min-height: 410px;
    overflow: hidden;
    padding: clamp(18px, 4vw, 34px);
}

.product-gallery-main img {
    display: block;
    height: auto;
    margin: auto;
    max-height: 390px;
    object-fit: contain;
    width: 100%;
}

.product-gallery-thumbs {
    display: flex;
    gap: 9px;
}

.product-gallery-thumb {
    align-items: center;
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: 11px;
    display: flex;
    height: 70px;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
    width: 70px;
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
    border-color: var(--tq-blue);
    box-shadow: 0 0 0 2px rgba(7, 95, 200, 0.1);
}

.product-gallery-thumb img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.product-detail-info h1 {
    color: var(--tq-navy);
    font-size: clamp(1.65rem, 3vw, 2.35rem) !important;
    font-weight: 850;
    line-height: 1.15;
}

.product-detail-guidance {
    color: #2f6649;
}

.product-detail-guidance i {
    color: var(--tq-green);
    font-size: 1rem;
}

.product-detail-price,
.product-dynamic-price-total {
    color: var(--tq-green) !important;
    font-size: clamp(1.65rem, 3vw, 2.15rem) !important;
    font-weight: 850;
}

.product-price-tiers {
    border: 1px solid var(--tq-line);
    border-radius: 13px;
    max-width: 470px;
    overflow: hidden;
}

.product-price-tiers-header,
.product-price-tier-row {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
    padding: 10px 13px;
}

.product-price-tiers-header {
    background: #f1f6fb;
    color: #526f90;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-price-tier-row {
    border-top: 1px solid var(--tq-line);
    color: #365573;
    font-size: 0.84rem;
}

.product-price-tier-row.is-active {
    background: #ecf8f2;
    color: #135c36;
    font-weight: 800;
}

.best-price-badge {
    background: var(--tq-green);
    border-radius: 999px;
    color: #fff;
    display: inline-block;
    font-size: 0.62rem;
    margin-left: 4px;
    padding: 3px 6px;
}

.product-detail-buybox,
.product-detail-purchase {
    background: #f7faff;
    border: 1px solid var(--tq-line);
    border-radius: 16px;
    padding: 16px;
}

.product-detail-actions {
    align-items: stretch;
    display: grid !important;
    gap: 10px !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

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

.product-detail-cart-btn {
    background: var(--tq-blue);
    border-color: var(--tq-blue);
    color: #fff;
}

.product-detail-whatsapp-btn,
.btn-whatsapp {
    background: #08783b;
    border-color: #08783b;
    color: #fff;
}

.product-detail-whatsapp-btn:hover,
.btn-whatsapp:hover {
    background: #066532;
    border-color: #066532;
    color: #fff;
}

.product-detail-trust-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-detail-trust-item {
    align-items: center;
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: 12px;
    color: #486681;
    display: flex;
    font-size: 0.76rem;
    gap: 7px;
    min-height: 50px;
    padding: 8px;
}

.product-detail-trust-item i {
    color: var(--tq-blue);
}

.product-detail .nav-tabs {
    border-bottom-color: var(--tq-line);
    gap: 5px;
}

.product-detail .nav-tabs .nav-link {
    border: 0;
    border-radius: 10px 10px 0 0;
    color: #4b6680;
    font-weight: 750;
    min-height: 44px;
}

.product-detail .nav-tabs .nav-link.active {
    background: #edf5ff;
    box-shadow: inset 0 -3px 0 var(--tq-blue);
    color: var(--tq-blue);
}

.product-dosage-box,
.product-recommendation-section {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(11, 37, 69, 0.06);
    margin-top: 26px;
    overflow: hidden;
    padding: clamp(17px, 3vw, 25px);
}

/* Carrinho sem dependência do Tailwind */
.cart-page {
    padding-top: 8px;
}

.cart-page > .d-flex:first-child {
    background: linear-gradient(135deg, #fff 0%, #edf6ff 100%);
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius);
    box-shadow: 0 12px 34px rgba(11, 37, 69, 0.06);
    margin-bottom: 20px !important;
    padding: clamp(18px, 3vw, 27px);
}

.cart-page h1 {
    color: var(--tq-navy);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 850;
}

.cart-table-card,
.cart-summary-box {
    border: 1px solid var(--tq-line);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(11, 37, 69, 0.07) !important;
}

.cart-table-card {
    padding: 4px 14px;
}

.cart-table-wrapper thead th {
    border-bottom-color: var(--tq-line);
    color: #607b97;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.055em;
    padding: 13px 8px;
    text-transform: uppercase;
}

.cart-table-wrapper tbody td {
    border-bottom-color: #e8eef5;
    padding: 15px 8px;
}

.cart-qty-control {
    align-items: center;
    background: #f5f8fc;
    border: 1px solid var(--tq-line);
    border-radius: 11px;
    display: inline-flex;
    gap: 3px;
    padding: 3px;
}

.cart-qty-btn,
.cart-page .cart-qty-minus,
.cart-page .cart-qty-plus {
    align-items: center;
    background: #fff;
    border: 1px solid #d6e1ec;
    border-radius: 8px;
    color: var(--tq-navy);
    display: inline-flex;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.cart-qty-input {
    background: transparent;
    border: 0;
    font-weight: 750;
    height: 34px;
    min-height: 34px !important;
    padding: 0;
    text-align: center;
    width: 42px;
}

.cart-summary-box {
    position: sticky;
    top: 102px;
}

.cart-total-box .cart-total-value {
    color: var(--tq-green) !important;
    font-size: 1.9rem;
    font-weight: 850;
}

.cart-summary-trust {
    background: #f4f8fc;
    border-radius: 12px;
    padding: 12px;
}

.cart-volume-alerts > div {
    background: #fff9e7;
    border: 1px solid #f0d98f;
    border-radius: 14px;
}

.cart-page .flex { display: flex; }
.cart-page .inline-flex { display: inline-flex; }
.cart-page .block { display: block; }
.cart-page .hidden { display: none !important; }
.cart-page .items-center { align-items: center; }
.cart-page .items-start { align-items: flex-start; }
.cart-page .justify-center { justify-content: center; }
.cart-page .justify-between { justify-content: space-between; }
.cart-page .flex-1 { flex: 1 1 0%; }
.cart-page .flex-shrink-0 { flex-shrink: 0; }
.cart-page .min-w-0 { min-width: 0; }
.cart-page .w-full { width: 100%; }
.cart-page .w-8 { width: 2rem; }
.cart-page .h-8 { height: 2rem; }
.cart-page .w-12 { width: 3rem; }
.cart-page .h-12 { height: 3rem; }
.cart-page .w-14 { width: 3.5rem; }
.cart-page .h-14 { height: 3.5rem; }
.cart-page .gap-1 { gap: 0.25rem; }
.cart-page .gap-2 { gap: 0.5rem; }
.cart-page .gap-3 { gap: 0.75rem; }
.cart-page .p-0 { padding: 0; }
.cart-page .p-1 { padding: 0.25rem; }
.cart-page .p-4 { padding: 1rem; }
.cart-page .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.cart-page .px-4 { padding-left: 1rem; padding-right: 1rem; }
.cart-page .py-2 { padding-bottom: 0.5rem; padding-top: 0.5rem; }
.cart-page .py-3 { padding-bottom: 0.75rem; padding-top: 0.75rem; }
.cart-page .py-4 { padding-bottom: 1rem; padding-top: 1rem; }
.cart-page .pt-1 { padding-top: 0.25rem; }
.cart-page .pr-7 { padding-right: 1.75rem; }
.cart-page .mt-1 { margin-top: 0.25rem; }
.cart-page .mt-2 { margin-top: 0.5rem; }
.cart-page .mt-4 { margin-top: 1rem; }
.cart-page .mb-3 { margin-bottom: 0.75rem; }
.cart-page .mb-4 { margin-bottom: 1rem; }
.cart-page .ml-auto { margin-left: auto; }
.cart-page .rounded-lg { border-radius: 0.5rem; }
.cart-page .rounded-xl { border-radius: 0.75rem; }
.cart-page .border { border-width: 1px; }
.cart-page .border-solid { border-style: solid; }
.cart-page .border-0 { border: 0; }
.cart-page .border-gray-100 { border-color: #edf1f5; }
.cart-page .border-gray-200 { border-color: #dce4ec; }
.cart-page .border-blue-200 { border-color: #bcd6f3; }
.cart-page .border-amber-200 { border-color: #f0d98f; }
.cart-page .border-amber-300 { border-color: #e7c35e; }
.cart-page .border-t { border-top-style: solid; border-top-width: 1px; }
.cart-page .bg-white { background: #fff; }
.cart-page .bg-gray-50 { background: #f8fafc; }
.cart-page .bg-gray-100 { background: #f1f5f9; }
.cart-page .bg-amber-50 { background: #fff9e7; }
.cart-page .bg-green-600 { background: #08783b; }
.cart-page .bg-transparent { background: transparent; }
.cart-page .text-white { color: #fff; }
.cart-page .text-gray-300 { color: #94a3b8; }
.cart-page .text-gray-400 { color: #71849a; }
.cart-page .text-gray-500 { color: #60758c; }
.cart-page .text-gray-700 { color: #334e68; }
.cart-page .text-gray-900 { color: #102a43; }
.cart-page .text-blue-700 { color: #075fc8; }
.cart-page .text-green-600,
.cart-page .text-green-700 { color: #0d7440; }
.cart-page .text-amber-500 { color: #b77900; }
.cart-page .text-amber-600,
.cart-page .text-amber-700,
.cart-page .text-amber-800 { color: #7a5100; }
.cart-page .text-xs { font-size: 0.75rem; }
.cart-page .text-sm { font-size: 0.875rem; }
.cart-page .text-base { font-size: 1rem; }
.cart-page .text-lg { font-size: 1.125rem; }
.cart-page .text-xl { font-size: 1.25rem; }
.cart-page .font-medium { font-weight: 600; }
.cart-page .font-semibold { font-weight: 700; }
.cart-page .font-bold { font-weight: 800; }
.cart-page .text-center { text-align: center; }
.cart-page .no-underline { text-decoration: none; }
.cart-page .underline { text-decoration: underline; }
.cart-page .whitespace-nowrap { white-space: nowrap; }
.cart-page .truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-page .relative { position: relative; }
.cart-page .absolute { position: absolute; }
.cart-page .sticky { position: sticky; }
.cart-page .top-3 { top: 0.75rem; }
.cart-page .right-3 { right: 0.75rem; }
.cart-page .bottom-0 { bottom: 0; }
.cart-page .z-20 { z-index: 20; }
.cart-page .shadow-lg { box-shadow: 0 -12px 30px rgba(11, 37, 69, 0.12); }
.cart-page .object-contain { object-fit: contain; }
.cart-page .transition-colors { transition: color 0.15s ease, background-color 0.15s ease; }
.cart-page .hover\:bg-blue-50:hover { background: #edf5ff; }
.cart-page .hover\:bg-amber-100:hover { background: #fff1bf; }
.cart-page .hover\:text-red-400:hover { color: #b4232d; }
.cart-page .hover\:text-white:hover { color: #fff; }

/* Calculadora */
.pool-calculator-page {
    padding-top: 8px;
}

.pool-calculator-hero {
    background:
        radial-gradient(circle at 85% 25%, rgba(34, 184, 207, 0.2), transparent 32%),
        linear-gradient(135deg, #fff 0%, #eaf5ff 100%);
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius-lg);
    box-shadow: var(--tq-shadow);
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
}

.pool-calculator-hero h1 {
    color: var(--tq-navy);
    font-size: clamp(2rem, 5vw, 3.25rem) !important;
    line-height: 1.06;
}

.pool-calculator-flow {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pool-flow-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #d8e7f5;
    border-radius: 14px;
    padding: 13px;
}

.pool-flow-icon,
.pool-section-icon,
.pool-help-banner-icon {
    align-items: center;
    background: #e8f3ff;
    border-radius: 11px;
    color: var(--tq-blue);
    display: inline-flex;
    justify-content: center;
}

.pool-calculator-panel {
    border: 1px solid var(--tq-line) !important;
    border-radius: var(--tq-radius) !important;
    box-shadow: 0 13px 34px rgba(11, 37, 69, 0.065) !important;
}

.shape-option-card {
    border-color: #d5e2ee;
    border-radius: 13px;
}

.shape-option input:checked + .shape-option-card,
.shape-option-card.active {
    background: #edf6ff;
    border-color: var(--tq-blue);
    box-shadow: 0 0 0 3px rgba(7, 95, 200, 0.1);
}

.pool-calculate-btn,
.pool-whatsapp-cta {
    min-height: 50px !important;
}

.calculator-results,
.pool-seo-copy {
    scroll-margin-top: 118px;
}

.pool-seo-copy {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius-lg);
    box-shadow: 0 12px 32px rgba(11, 37, 69, 0.055);
    padding: clamp(22px, 4vw, 38px);
}

/* Kits */
.kits-hero {
    background:
        radial-gradient(circle at 90% 15%, rgba(13, 116, 64, 0.13), transparent 33%),
        linear-gradient(135deg, #fff 0%, #effaf4 100%) !important;
    border-color: #cce4d6 !important;
    border-radius: var(--tq-radius-lg) !important;
    box-shadow: var(--tq-shadow) !important;
    margin-bottom: 24px;
    padding: clamp(23px, 4vw, 38px) !important;
}

.kits-hero h1 {
    color: var(--tq-navy);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 850;
}

.kits-subtitle {
    color: #496781;
    margin: 0;
    max-width: 760px;
}

.kits-grid {
    display: grid;
    gap: 18px !important;
    grid-template-columns: 1fr;
}

.kit-card {
    background: #fff;
    border-color: var(--tq-line) !important;
    border-radius: 18px !important;
    box-shadow: 0 13px 34px rgba(11, 37, 69, 0.07) !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
    padding: 18px !important;
    position: relative;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.kit-card:hover {
    border-color: #bad2ea !important;
    box-shadow: 0 20px 42px rgba(11, 37, 69, 0.11) !important;
    transform: translateY(-3px);
}

.kit-card-featured {
    background: linear-gradient(145deg, #fff 0%, #effaf4 100%) !important;
    border-color: #8ec8a7 !important;
}

.kit-card-featured::before {
    background: linear-gradient(90deg, #0d7440, #26a664, #7ed6a5);
    content: "";
    height: 5px;
    inset: 0 0 auto;
    position: absolute;
}

.kit-card-header,
.kit-title-wrap,
.kit-pricing-top {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.kit-title-wrap {
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.kit-card h2 {
    font-size: 1.12rem;
    margin: 0;
}

.kit-badge {
    align-items: center;
    background: #bd5b09;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 0.71rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.02em;
    padding: 5px 9px;
}

.kit-card-featured .kit-badge {
    background: var(--tq-green);
}

.kit-desc {
    color: #496781;
    font-size: 0.91rem;
    margin: 0;
}

.kit-icon {
    align-items: center;
    background: #eaf3ff !important;
    border-radius: 999px;
    color: var(--tq-blue) !important;
    display: inline-flex;
    flex-shrink: 0;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.kit-media {
    align-items: center;
    aspect-ratio: 16 / 10;
    background: #f7faff !important;
    border-color: var(--tq-line) !important;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
    width: min(100%, 360px);
}

.kit-media img {
    filter: saturate(1.02) contrast(1.02) drop-shadow(0 12px 16px rgba(15, 23, 42, 0.1));
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(var(--kit-image-scale, 1.08));
    transform-origin: center;
    width: 100%;
}

.kit-media img.kit-image-compact { --kit-image-scale: 1.16; }
.kit-media img.kit-image-wide { --kit-image-scale: 1.06; }

.kit-products {
    display: flex;
    flex-direction: column;
    gap: 7px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.kit-products li {
    align-items: center;
    display: flex;
    font-size: 0.89rem;
    gap: 12px;
    justify-content: space-between;
}

.kit-item-main {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 8px;
    min-width: 0;
}

.kit-item-thumb {
    background: #f7faff;
    border: 1px solid var(--tq-line);
    border-radius: 8px;
    flex-shrink: 0;
    height: 35px;
    object-fit: contain;
    padding: 2px;
    width: 35px;
}

.kit-products a {
    color: var(--tq-blue);
    font-weight: 650;
    min-width: 0;
}

.kit-products a:hover,
.kit-products a:focus-visible {
    text-decoration: underline;
}

.kit-price {
    color: var(--tq-navy);
    flex-shrink: 0;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.kit-products,
.kit-pricing-box {
    border-color: var(--tq-line) !important;
    border-radius: 13px !important;
}

.kit-pricing-box {
    background: linear-gradient(145deg, #f8fbff 0%, #eef6ff 100%);
    padding: 12px 14px;
}

.kit-pricing-top {
    align-items: flex-end;
    flex-wrap: wrap;
}

.kit-price-old {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    text-decoration: line-through;
}

.kit-price-now {
    color: var(--tq-green) !important;
    font-size: 1.55rem;
    font-weight: 850;
    line-height: 1;
    margin: 0;
}

.kit-benefit {
    color: #135c36;
    font-size: 0.87rem;
    font-weight: 700;
    margin: 7px 0 0;
}

.kit-actions {
    display: grid;
    gap: 9px;
    grid-template-columns: 1fr;
}

.kit-actions .btn {
    min-height: 46px;
}

.kit-note,
.kit-whatsapp-help {
    border: 1px solid var(--tq-line);
    border-radius: 13px;
    color: #385775;
    font-size: 0.9rem;
    margin-top: 18px;
    padding: 14px 16px;
}

.kit-note {
    background: #f7faff;
}

.kit-whatsapp-help {
    background: #effaf4;
    border-color: #b8dfc9;
    color: #135c36;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kit-whatsapp-help p {
    color: inherit;
    font-weight: 700;
    margin: 0;
}

/* Contato, institucionais e páginas locais */
.contact-header,
.faq-hero,
.privacy-hero,
.local-page > header,
.blog-listing > .text-center:first-child {
    background:
        radial-gradient(circle at 88% 15%, rgba(34, 184, 207, 0.13), transparent 30%),
        linear-gradient(135deg, #fff 0%, #edf6ff 100%);
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius-lg);
    box-shadow: 0 12px 34px rgba(11, 37, 69, 0.06);
    padding: clamp(23px, 4vw, 38px);
}

.contact-header {
    margin-bottom: 22px !important;
}

.contact-card {
    border: 1px solid var(--tq-line) !important;
    border-radius: 18px !important;
    box-shadow: 0 13px 34px rgba(11, 37, 69, 0.065) !important;
}

.contact-card .card-body {
    padding: clamp(20px, 3vw, 29px);
}

.contact-page .contact-info-card {
    background: linear-gradient(150deg, #0b2545 0%, #0a4774 100%);
    border: 0 !important;
    color: #fff;
}

.contact-info-card h5,
.contact-info-card strong,
.contact-info-card a,
.contact-info-card p,
.contact-info-card .text-muted {
    color: #fff !important;
}

.contact-info-card .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.contact-page .contact-info-card .contact-hours {
    background: rgba(255, 255, 255, 0.09);
}

.contact-whatsapp-btn {
    background: #fff;
    border-color: #fff;
    color: #08783b !important;
    width: 100%;
}

.contact-whatsapp-btn:hover {
    background: #eaf8f0;
    border-color: #eaf8f0;
    color: #066532 !important;
}

.contact-map {
    border-radius: 14px;
}

.about-wrapper {
    padding-top: 8px;
}

.page-about-hero {
    background:
        radial-gradient(circle at 85% 15%, rgba(34, 184, 207, 0.16), transparent 30%),
        linear-gradient(135deg, #fff 0%, #edf6ff 100%);
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius-lg);
    box-shadow: var(--tq-shadow);
    max-width: none !important;
    padding: clamp(28px, 5vw, 52px) !important;
}

.page-about-hero h1 {
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 850;
}

.about-panel .section {
    padding: clamp(38px, 6vw, 68px) 0 0;
}

.about-grid {
    gap: 16px !important;
}

.about-card {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: 17px;
    box-shadow: 0 10px 28px rgba(11, 37, 69, 0.055);
    padding: 21px;
}

.about-icon {
    align-items: center;
    background: #eaf3ff;
    border-radius: 12px;
    color: var(--tq-blue);
    display: inline-flex;
    height: 43px;
    justify-content: center;
    width: 43px;
}

.faq-hero {
    margin-bottom: 22px;
    text-align: center;
}

.faq-hero p:last-child {
    margin: 10px auto 0;
    max-width: 760px;
}

.faq-page .accordion {
    display: grid;
    gap: 10px;
    margin: 0 auto;
    max-width: 900px;
}

.faq-page .accordion-item {
    border: 1px solid var(--tq-line);
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.045);
    overflow: hidden;
}

.faq-page .accordion-button {
    color: var(--tq-navy);
    font-weight: 750;
    min-height: 58px;
}

.faq-page .accordion-button:not(.collapsed) {
    background: #edf6ff;
    box-shadow: inset 0 -1px 0 var(--tq-line);
    color: var(--tq-blue-dark);
}

.faq-page .accordion-button:focus {
    border-color: var(--tq-blue);
    box-shadow: 0 0 0 3px rgba(7, 95, 200, 0.12);
}

.faq-page .accordion-body {
    color: #385775;
    line-height: 1.72;
    padding: 18px 20px 21px;
}

.privacy-hero {
    margin-bottom: 20px;
}

.privacy-content {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius-lg) !important;
    box-shadow: var(--tq-shadow) !important;
    margin: 0 auto;
    max-width: 900px;
    padding: clamp(23px, 4vw, 42px);
}

.privacy-content section + section {
    border-top: 1px solid var(--tq-line);
    margin-top: 24px;
    padding-top: 24px;
}

.privacy-content h2 {
    font-size: 1.18rem;
    font-weight: 800;
}

.local-page > header {
    margin-bottom: 24px !important;
}

.local-page > header h1 {
    margin-bottom: 10px !important;
}

.local-page > header p {
    margin: 0;
    max-width: 820px;
}

.local-page .card {
    border: 1px solid var(--tq-line);
    border-radius: 17px;
    box-shadow: 0 11px 30px rgba(11, 37, 69, 0.06) !important;
}

.local-page .card-body {
    padding: 22px;
}

.local-sticky-card {
    top: 102px;
}

.local-page section > h2 {
    font-weight: 800;
}

/* Blog e artigos */
.blog-listing > .text-center:first-child {
    margin-bottom: 28px !important;
}

.blog-listing .lead {
    color: var(--tq-muted) !important;
    margin-bottom: 0;
}

.blog-card {
    border: 1px solid var(--tq-line);
    border-radius: 18px;
    box-shadow: 0 12px 31px rgba(11, 37, 69, 0.065) !important;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.blog-card:hover {
    border-color: #bed4ea;
    box-shadow: 0 19px 42px rgba(11, 37, 69, 0.11) !important;
    transform: translateY(-3px);
}

.blog-card .card-img-top {
    background: #eef4fa !important;
}

.blog-card .card-body {
    padding: 21px;
}

.blog-card .card-title a {
    color: var(--tq-navy) !important;
    font-weight: 800;
}

.blog-post {
    background: #fff;
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius-lg);
    box-shadow: var(--tq-shadow);
    margin: 8px auto 0;
    max-width: 940px;
    padding: clamp(22px, 5vw, 52px) !important;
}

.blog-post > h1,
.blog-post section:first-of-type h1,
.blog-post .display-5 {
    color: var(--tq-navy);
    font-size: clamp(2rem, 5vw, 3.15rem) !important;
    line-height: 1.08;
}

.blog-post h2 {
    color: var(--tq-navy);
    font-size: clamp(1.35rem, 3vw, 1.8rem) !important;
    line-height: 1.25;
    margin-top: 0;
}

.blog-post p,
.blog-post li {
    font-size: 1.02rem;
    line-height: 1.78;
}

.blog-post img {
    border-radius: 16px;
    height: auto;
    max-width: 100%;
}

.blog-post .table-responsive {
    border: 1px solid var(--tq-line);
    border-radius: 14px;
}

.blog-post .table {
    margin-bottom: 0;
}

.blog-post .bg-light {
    background: #f3f8fd !important;
    border: 1px solid var(--tq-line);
}

.related-post-card {
    background: #f7faff !important;
    border-color: var(--tq-line) !important;
    border-radius: 13px !important;
    min-height: 100%;
}

.related-posts h2 {
    font-size: 1.25rem !important;
    font-weight: 800;
    margin-bottom: 16px;
}

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

.related-post-card {
    align-items: flex-start;
    color: inherit;
    display: flex;
    gap: 12px;
    padding: 13px;
    text-decoration: none;
}

.related-post-icon {
    align-items: center;
    background: #e7f2ff;
    border-radius: 10px;
    color: var(--tq-blue);
    display: flex;
    flex: 0 0 40px;
    height: 40px;
    justify-content: center;
}

.related-post-title {
    color: var(--tq-navy) !important;
    font-size: 0.88rem !important;
    font-weight: 750;
    line-height: 1.4 !important;
    margin: 0 0 3px;
}

.related-post-date {
    color: #6b8299 !important;
    font-size: 0.76rem !important;
    margin: 0;
}

.related-post-card:hover {
    background: #edf5ff !important;
    border-color: #bcd4ec !important;
}

@media (max-width: 991.98px) {
    .products-page .products-sidebar,
    .product-detail-media,
    .cart-summary-box {
        position: static;
    }

    .products-page .products-sidebar {
        display: block;
    }

    .products-page .products-category-list {
        display: flex;
        gap: 7px;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .products-page .products-category-link {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .product-gallery-main {
        min-height: 330px;
    }

    .contact-info-card {
        min-height: auto !important;
    }
}

@media (min-width: 768px) {
    .kits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kit-actions {
        grid-template-columns: 1fr auto;
    }

    .kit-whatsapp-help {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 767.98px) {
    .products-page > nav[aria-label="breadcrumb"] {
        display: none;
    }

    .products-page .products-header {
        margin-bottom: 10px !important;
        padding: 14px 16px;
    }

    .products-page .products-header h1 {
        font-size: clamp(1.45rem, 7vw, 1.8rem) !important;
        line-height: 1.12;
    }

    .products-page .products-header p {
        display: none;
    }

    .products-page .products-count {
        margin-top: 7px !important;
        text-align: left;
    }

    .products-page .row.g-4 {
        --bs-gutter-y: 10px;
    }

    .products-page .products-sidebar {
        padding: 8px;
    }

    .products-page .products-sidebar .card-body {
        padding: 0;
    }

    .products-page .products-sidebar h2 {
        margin: 2px 6px 6px !important;
    }

    .products-page .products-category-list {
        flex-wrap: nowrap;
        margin: 0;
    }

    .products-page .products-category-link {
        min-height: 34px;
        padding: 5px 9px;
    }

    .products-header,
    .contact-header,
    .faq-hero,
    .privacy-hero,
    .local-page > header,
    .blog-listing > .text-center:first-child,
    .pool-calculator-hero {
        border-radius: 18px;
    }

    .products-page .products-filters-form,
    .products-page .filters-inline {
        align-items: stretch !important;
        flex-direction: column !important;
    }

    .products-page .filters-shell {
        padding: 9px;
    }

    .products-page .filters-inline {
        display: grid;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .products-page .filters-search {
        display: none;
    }

    .products-page .filters-order {
        min-width: 0;
    }

    .products-page .filters-order .form-label {
        display: none;
    }

    .products-page .filters-order .form-select {
        height: 40px;
    }

    .products-page .filters-actions {
        align-items: stretch !important;
    }

    .products-page .filters-actions .btn {
        height: 40px;
        min-width: auto;
        padding-left: 10px;
        padding-right: 10px;
        width: auto;
    }

    .products-favorites-toolbar {
        justify-content: space-between;
        margin-bottom: 10px !important;
    }

    .products-favorites-hint {
        line-height: 1.25;
        max-width: 145px;
        text-align: right;
    }

    .products-page .filters-order {
        max-width: 100%;
        width: 100%;
    }

    .product-detail-layout {
        border-radius: 18px;
        padding: 15px 5px 20px;
    }

    .product-gallery-main {
        min-height: 280px;
        padding: 18px;
    }

    .product-detail-actions,
    .product-detail-trust-grid {
        grid-template-columns: 1fr;
    }

    .product-price-tiers-header,
    .product-price-tier-row {
        gap: 8px;
        padding: 9px 10px;
    }

    .cart-page > .d-flex:first-child {
        padding: 18px;
    }

    .cart-page .sticky.bottom-0 {
        border-radius: 16px 16px 0 0;
        margin: 18px -12px -42px;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }

    .pool-calculator-flow {
        grid-template-columns: 1fr;
    }

    .kit-card {
        padding: 15px !important;
    }

    .kit-media {
        aspect-ratio: 4 / 3;
        max-width: 340px;
        width: 100%;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-post {
        border-radius: 18px;
        padding: 20px 16px !important;
    }

    .blog-post p,
    .blog-post li {
        font-size: 0.98rem;
    }
}

/* Calculadora: contenção final para telas estreitas. */
@media (max-width: 575.98px) {
    .pool-calculator-page {
        max-width: 100%;
        overflow-x: hidden;
    }

    .pool-calculator-page .row > *,
    .pool-calculator-page .card-body,
    .pool-calculator-hero,
    .pool-calculator-flow,
    .pool-flow-card {
        max-width: 100%;
        min-width: 0;
    }

    .pool-calculator-hero {
        padding: 20px 16px;
    }

    .pool-calculator-hero h1 {
        font-size: 1.85rem !important;
        overflow-wrap: anywhere;
    }

    .pool-calculator-hero .lead {
        font-size: 1.05rem;
        overflow-wrap: anywhere;
    }
}
