/* ============================================================
   SMART LOCALIZE RASTREIO — base do tema
   As cores vêm de tc3_dynamic_css() (functions.php).
   NUNCA escreva cor de marca fixa aqui: use as variáveis --tc3-*.
   ============================================================ */

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }

/* A trava precisa estar no html E no body: só no body, um elemento posicionado
   fora da tela ainda consegue arrastar a página para o lado no celular. */
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; }

body {
    margin: 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5a6570;
    background: #fff;
    overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--tc3-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--tc3-primary-dark); }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .6em;
    color: #1e2a35;
    font-weight: 700;
    line-height: 1.25;
}

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }

button { font-family: inherit; }

/* ---------- Utilitários ---------- */
.tc3-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.tc3-section { padding: 90px 0; position: relative; }
.tc3-section-tight { padding: 60px 0; }

.tc3-bg-light { background: #f6f8fa; }
.tc3-bg-dark  { background: var(--tc3-dark); color: #c9d3dc; }
.tc3-bg-dark h1, .tc3-bg-dark h2, .tc3-bg-dark h3, .tc3-bg-dark h4 { color: #fff; }

.tc3-has-bg { background-size: cover; background-position: center; background-repeat: no-repeat; }
.tc3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(var(--tc3-dark-rgb), .82), rgba(var(--tc3-dark-rgb), .9));
    pointer-events: none;
}
.tc3-section > .tc3-container { position: relative; z-index: 1; }

/* Cabeçalho de seção: sobretítulo + título + traço */
.tc3-eyebrow {
    display: block;
    color: var(--tc3-primary);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.tc3-section-title {
    font-size: clamp(1.6rem, 3.2vw, 2.35rem);
    margin-bottom: 18px;
}
.tc3-section-head { text-align: center; max-width: 820px; margin: 0 auto 55px; }
.tc3-section-head p { font-size: 1.02rem; }
.tc3-rule {
    width: 68px;
    height: 4px;
    border-radius: 4px;
    background: var(--tc3-primary);
    margin: 0 auto 22px;
}
.tc3-rule-left { margin-left: 0; }

/* ---------- Botões ---------- */
.tc3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 34px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tc3-btn:hover { transform: translateY(-2px); }

.tc3-btn-primary {
    background: var(--tc3-primary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(var(--tc3-primary-rgb), .32);
}
.tc3-btn-primary:hover { background: var(--tc3-primary-dark); color: #fff; box-shadow: 0 12px 28px rgba(var(--tc3-primary-rgb), .4); }

.tc3-btn-outline { background: transparent; color: var(--tc3-primary); border-color: var(--tc3-primary); }
.tc3-btn-outline:hover { background: var(--tc3-primary); color: #fff; }

.tc3-btn-light { background: #fff; color: var(--tc3-dark); }
.tc3-btn-light:hover { background: #fff; color: var(--tc3-primary); }

.tc3-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.tc3-btn-ghost:hover { background: #fff; color: var(--tc3-dark); border-color: #fff; }

.tc3-btn-block { width: 100%; }

/* ---------- Cabeçalho ---------- */
.tc3-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    background: transparent;
    transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.tc3-header.tc3-stuck {
    background: rgba(var(--tc3-dark-rgb), .96);
    padding: 8px 0;
    box-shadow: 0 6px 24px rgba(0,0,0,.24);
    backdrop-filter: blur(8px);
}
.tc3-header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tc3-brand { display: flex; align-items: center; }
.tc3-brand img, .tc3-brand .custom-logo {
    max-height: 78px;
    width: auto;
    transition: max-height .3s ease;
}
.tc3-header.tc3-stuck .tc3-brand img,
.tc3-header.tc3-stuck .tc3-brand .custom-logo { max-height: 52px; }

.tc3-brand-text { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 1.5rem; font-weight: 900; letter-spacing: .02em; }
.tc3-brand-text:hover { color: #fff; }
.tc3-brand-pin { color: var(--tc3-primary); display: inline-flex; }

/* Navegação por âncoras */
.tc3-nav { width: 100%; }
.tc3-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 26px;
}
.tc3-menu li { position: relative; }
.tc3-menu a {
    display: inline-block;
    padding: 6px 2px;
    color: #fff;
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: .01em;
}
.tc3-menu a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: var(--tc3-primary);
    transition: width .25s ease;
}
.tc3-menu a:hover { color: var(--tc3-primary); }
.tc3-menu a:hover::after,
.tc3-menu .current-menu-item > a::after { width: 100%; }

.tc3-menu .tc3-menu-cta > a,
.tc3-menu .menu-item-cta > a {
    background: var(--tc3-primary);
    color: #fff;
    padding: 7px 20px;
    border-radius: 999px;
    font-weight: 600;
}
.tc3-menu .tc3-menu-cta > a::after,
.tc3-menu .menu-item-cta > a::after { display: none; }
.tc3-menu .tc3-menu-cta > a:hover,
.tc3-menu .menu-item-cta > a:hover { background: var(--tc3-primary-dark); color: #fff; }

/* Submenu */
.tc3-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    background: rgba(var(--tc3-dark-rgb), .98);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0,0,0,.3);
    opacity: 0;
    visibility: hidden;
    transition: all .22s ease;
    z-index: 5;
}
.tc3-menu li:hover > .sub-menu,
.tc3-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.tc3-menu .sub-menu a { display: block; padding: 9px 18px; }
.tc3-menu .sub-menu a::after { display: none; }
.tc3-menu .sub-menu a:hover { background: rgba(255,255,255,.06); }

/* Botão do menu no celular */
.tc3-nav-toggle {
    display: none;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}
.tc3-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.tc3-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.tc3-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tc3-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ---------- Rodapé ---------- */
.tc3-footer { background: var(--tc3-dark); color: #9fb0be; padding-top: 56px; }
.tc3-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding-bottom: 34px;
}
.tc3-footer-brand { max-width: 520px; }
.tc3-footer-logo { max-height: 64px; width: auto; margin-bottom: 12px; }
.tc3-footer-name { display: block; color: #fff; font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.tc3-footer-text { margin: 0; font-size: .94rem; }

.tc3-footer-social { display: flex; gap: 12px; }
.tc3-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #fff;
    transition: background .22s ease, transform .22s ease;
}
.tc3-social:hover { background: var(--tc3-primary); color: #fff; transform: translateY(-3px); }

.tc3-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    font-size: .86rem;
    text-align: center;
}
.tc3-footer-bottom p { margin: 0; }

/* ---------- Botões flutuantes ---------- */
.tc3-floating {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tc3-float-btn {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.26);
    transition: transform .22s ease, box-shadow .22s ease;
}
.tc3-float-btn:hover { transform: translateY(-3px) scale(1.05); color: #fff; box-shadow: 0 12px 26px rgba(0,0,0,.32); }
.tc3-float-wa { background: #25D366; }
.tc3-float-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.tc3-float-fb { background: #1877F2; }
.tc3-float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: tc3-pulse 2.4s ease-out infinite;
    pointer-events: none;
}
@keyframes tc3-pulse {
    0%   { transform: scale(1);   opacity: .85; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Estrelas ---------- */
.tc3-stars { display: inline-flex; gap: 3px; color: #f5b400; }

/* ---------- Animação de entrada ----------
   O estado inicial invisível só é aplicado quando o JavaScript está presente
   (a classe .tc3-js é posta no <html> pelo próprio header). Sem JS, ou se o
   main.js falhar ao carregar, o conteúdo aparece normalmente em vez de sumir. */
.tc3-js [data-tc3-anim] { opacity: 0; transition: opacity .7s ease, transform .7s ease; will-change: opacity, transform; }
.tc3-js [data-tc3-anim="fade-up"]    { transform: translateY(28px); }
.tc3-js [data-tc3-anim="fade-in"]    { transform: none; }
.tc3-js [data-tc3-anim="slide-left"] { transform: translateX(-32px); }
.tc3-js [data-tc3-anim="slide-right"]{ transform: translateX(32px); }
.tc3-js [data-tc3-anim="zoom-in"]    { transform: scale(.94); }
.tc3-js [data-tc3-anim].tc3-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-tc3-anim] { opacity: 1 !important; transform: none !important; transition: none; }
    .tc3-float-pulse { animation: none; opacity: 0; }
}

/* ---------- Páginas internas ---------- */
.tc3-page { padding-top: 160px; }
.tc3-page-inner { max-width: 840px; padding-bottom: 80px; }
.tc3-page-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.tc3-page-content h2 { margin-top: 1.6em; color: var(--tc3-primary); font-size: 1.25rem; }

.tc3-404 { padding: 200px 0 120px; text-align: center; }
.tc3-404 h1 { font-size: clamp(4rem, 14vw, 8rem); color: var(--tc3-primary); line-height: 1; }

/* ---------- Acessibilidade ---------- */
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.skip-link:focus {
    position: fixed !important;
    top: 12px; left: 12px;
    width: auto; height: auto;
    clip: auto;
    z-index: 999;
    padding: 12px 20px;
    background: #fff;
    color: var(--tc3-dark);
    border-radius: 8px;
}

/* ============================================================
   RESPONSIVO — base
   As seções acrescentam as próprias regras depois deste bloco.
   ============================================================ */
@media (max-width: 900px) {
    .tc3-section { padding: 64px 0; }

    .tc3-header-inner { flex-direction: row; justify-content: space-between; position: relative; }
    .tc3-nav-toggle { display: flex; position: static; transform: none; }

    .tc3-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 12px;
        right: 12px;
        width: auto;
        max-height: 0;
        overflow: hidden;
        background: rgba(var(--tc3-dark-rgb), .98);
        border-radius: 14px;
        box-shadow: 0 18px 40px rgba(0,0,0,.34);
        backdrop-filter: blur(10px);
        transition: max-height .32s ease;
    }
    .tc3-nav.is-open { max-height: 78vh; overflow-y: auto; }

    .tc3-menu { flex-direction: column; gap: 0; padding: 10px 0; }
    .tc3-menu li { width: 100%; }
    .tc3-menu a { display: block; padding: 13px 22px; }
    .tc3-menu a::after { display: none; }
    .tc3-menu .tc3-menu-cta > a,
    .tc3-menu .menu-item-cta > a { margin: 10px 22px; text-align: center; }

    .tc3-menu .sub-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(255,255,255,.05);
        border-radius: 0;
        min-width: 0;
        padding: 0;
    }
    .tc3-menu .sub-menu a { padding-left: 40px; }

    .tc3-footer-inner { flex-direction: column; text-align: center; }
    .tc3-footer-brand { max-width: none; }

    .tc3-floating { right: 14px; bottom: 14px; gap: 10px; }
    .tc3-float-btn { width: 48px; height: 48px; }
    .tc3-float-btn svg { width: 20px; height: 20px; }

    .tc3-page { padding-top: 130px; }
}

/* ============================================================
   SEÇÕES
   Cada bloco abaixo vem de uma seção do tema, na ordem em que
   ela aparece na página inicial.
   ============================================================ */

/* ---------- hero ---------- */
/* ============================================================
   HERO — topo de tela cheia com slideshow
   Todas as regras nascem de .tc3-hero.
   ============================================================ */

.tc3-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    padding: 175px 0 130px;
    overflow: hidden;
    text-align: center;
    background: var(--tc3-dark);
    isolation: isolate;
}

/* svh evita o pulo causado pela barra do navegador no celular */
@supports (min-height: 100svh) {
    .tc3-hero { min-height: 100svh; }
}

/* ---------- Slideshow de fundo ---------- */
.tc3-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.tc3-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.4s ease, transform 7s linear;
    will-change: opacity;
}
.tc3-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}
.tc3-hero-slides-single .tc3-hero-slide {
    opacity: 1;
    transform: none;
    transition: none;
}

/* ---------- Véu escuro por cima das fotos ---------- */
.tc3-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(var(--tc3-dark-rgb), .88) 0%, rgba(var(--tc3-dark-rgb), .62) 42%, rgba(var(--tc3-dark-rgb), .88) 100%),
        radial-gradient(120% 80% at 50% 45%, rgba(var(--tc3-primary-rgb), .16) 0%, rgba(var(--tc3-dark-rgb), 0) 65%);
}

/* ---------- Conteúdo ---------- */
.tc3-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.tc3-hero-title {
    color: #fff;
    font-size: clamp(2.1rem, 6.2vw, 4.1rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: .01em;
    overflow-wrap: break-word;
    word-break: break-word;
    margin: 0 0 18px;
    text-shadow: 0 3px 22px rgba(0, 0, 0, .38);
}

.tc3-hero-sub {
    color: rgba(255, 255, 255, .92);
    font-size: clamp(1rem, 1.9vw, 1.2rem);
    line-height: 1.75;
    overflow-wrap: break-word;
    max-width: 720px;
    margin: 0 auto 34px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}

.tc3-hero-btn {
    padding: 16px 42px;
    font-size: 1rem;
}

/* ---------- Seta que desce ---------- */
.tc3-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .28);
    transform: translateX(-50%);
    animation: tc3-hero-bob 2.4s ease-in-out infinite;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.tc3-hero-scroll:hover {
    color: #fff;
    background: var(--tc3-primary);
    border-color: var(--tc3-primary);
}
/* Foco visivel: a seta e o botao ficam sobre foto, o outline padrao some. */
.tc3-hero-scroll:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
    background: var(--tc3-primary);
    border-color: var(--tc3-primary);
}
.tc3-hero-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@keyframes tc3-hero-bob {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 9px); }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
    .tc3-hero { padding: 140px 0 110px; }
    .tc3-hero-sub { margin-bottom: 28px; }
    .tc3-hero-scroll { bottom: 26px; width: 46px; height: 46px; }
}

@media (max-width: 600px) {
    .tc3-hero {
        min-height: 90vh;
        padding: 125px 0 90px;
    }
    .tc3-hero-title { font-size: clamp(1.85rem, 8.2vw, 2.5rem); }
    .tc3-hero-sub { font-size: .98rem; line-height: 1.65; }
    .tc3-hero-btn { padding: 14px 28px; font-size: .93rem; width: auto; max-width: 100%; }
    /* Igual ao site de referência: a seta some no celular. */
    .tc3-hero-scroll { display: none; }
}

@supports (min-height: 100svh) {
    @media (max-width: 600px) {
        .tc3-hero { min-height: 90svh; }
    }
}

@media (prefers-reduced-motion: reduce) {
    .tc3-hero-slide { transition: none; transform: none; }
    .tc3-hero-scroll { animation: none; }
}

/* ---------- veiculos ---------- */
/* ============================================================
   SEÇÃO TIPOS DE VEÍCULO (.tc3-veiculos)
   Cabeçalho central + cartões com foto, texto e frase de rodapé.
   ============================================================ */

.tc3-veiculos { background: #fff; }

.tc3-veiculos .tc3-veic-head { margin-bottom: 50px; }
.tc3-veiculos .tc3-veic-intro {
    margin: 0;
    font-size: 1.02rem;
    color: #5a6570;
}

/* ---------- Grade ---------- */
.tc3-veiculos .tc3-veic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}
.tc3-veiculos .tc3-veic-grid[data-cols="1"] {
    grid-template-columns: minmax(0, 460px);
    justify-content: center;
}
.tc3-veiculos .tc3-veic-grid[data-cols="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 840px;
    margin: 0 auto;
}

/* ---------- Cartão ---------- */
.tc3-veiculos .tc3-veic-card {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #e7edf2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(var(--tc3-dark-rgb), .08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.tc3-veiculos .tc3-veic-card-link { color: inherit; text-decoration: none; }
.tc3-veiculos .tc3-veic-card-link:hover { color: inherit; }

.tc3-veiculos .tc3-veic-card:hover,
.tc3-veiculos .tc3-veic-card-link:focus-visible {
    transform: translateY(-8px);
    border-color: rgba(var(--tc3-primary-rgb), .38);
    box-shadow: 0 20px 42px rgba(var(--tc3-dark-rgb), .16);
}
.tc3-veiculos .tc3-veic-card-link:focus-visible {
    outline: 3px solid rgba(var(--tc3-primary-rgb), .5);
    outline-offset: 3px;
}

/* ---------- Foto ---------- */
.tc3-veiculos .tc3-veic-media {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #eef2f5;
}
.tc3-veiculos .tc3-veic-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.tc3-veiculos .tc3-veic-card:hover .tc3-veic-media img { transform: scale(1.06); }

/* ---------- Texto ---------- */
.tc3-veiculos .tc3-veic-body {
    flex: 1 1 auto;
    padding: 26px 26px 6px;
}
.tc3-veiculos .tc3-veic-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #1e2a35;
    transition: color .25s ease;
}
.tc3-veiculos .tc3-veic-card:hover .tc3-veic-title { color: var(--tc3-primary); }

.tc3-veiculos .tc3-veic-desc {
    margin: 0;
    font-size: .97rem;
    color: #5a6570;
}

/* ---------- Frase de rodapé ---------- */
.tc3-veiculos .tc3-veic-foot { padding: 20px 26px 26px; }
.tc3-veiculos .tc3-veic-foot-text {
    display: block;
    position: relative;
    padding-top: 18px;
    color: var(--tc3-primary);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.45;
}
.tc3-veiculos .tc3-veic-foot-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 3px;
    border-radius: 3px;
    background: var(--tc3-primary);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
    .tc3-veiculos .tc3-veic-grid[data-cols] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        max-width: 100%;
        margin: 0;
        justify-content: stretch;
    }
    .tc3-veiculos .tc3-veic-head { margin-bottom: 40px; }
}

@media (max-width: 640px) {
    .tc3-veiculos .tc3-veic-grid[data-cols] {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }
    .tc3-veiculos .tc3-veic-body { padding: 22px 20px 4px; }
    .tc3-veiculos .tc3-veic-foot { padding: 16px 20px 22px; }
    .tc3-veiculos .tc3-veic-title { font-size: 1.12rem; }
    .tc3-veiculos .tc3-veic-card:hover { transform: none; }
    .tc3-veiculos .tc3-veic-card:hover .tc3-veic-media img { transform: none; }
}

/* ---------- assistencia ---------- */
/* ============================================================
   SEÇÃO ASSISTÊNCIA VEICULAR (.tc3-assist)
   Foto e texto lado a lado, no mesmo ritmo de "sobre" e "plataforma".
   O lado da foto vem do Customizer (.tc3-assist--foto-esq / --foto-dir).
   No celular a foto fica sempre em cima.
   Cores de marca somente via variáveis --tc3-*.
   ============================================================ */

.tc3-assist {
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* Fio de cabelo no topo: a seção de cima também é branca e sem ele as duas
   viram um bloco só. Cinza neutro, não é cor de marca. */
.tc3-assist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1152px, calc(100% - 48px));
    height: 1px;
    background: linear-gradient(90deg, rgba(230, 236, 241, 0), #e6ecf1 50%, rgba(230, 236, 241, 0));
    pointer-events: none;
}

.tc3-assist-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 40px 64px;
}

/* Coluna sozinha (só foto ou só texto): ocupa a linha inteira, centralizada. */
.tc3-assist-grid > .tc3-assist-text:only-child,
.tc3-assist-grid > .tc3-assist-media:only-child {
    grid-column: 1 / -1;
    max-width: 820px;
    margin: 0 auto;
}

/* ---------- Coluna da foto ---------- */
.tc3-assist-media {
    position: relative;
    min-width: 0;
    max-width: 100%;
}

/* Brilho suave atrás da foto, no espírito da seção Plataforma. */
.tc3-assist-glow {
    position: absolute;
    top: -6%;
    right: -6%;
    bottom: -6%;
    left: -6%;
    display: block;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(var(--tc3-primary-rgb), .18), rgba(var(--tc3-primary-rgb), 0) 68%);
    z-index: 0;
    pointer-events: none;
}

.tc3-assist-figure {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(var(--tc3-dark-rgb), .18);
}

.tc3-assist-figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform .6s ease;
}

.tc3-assist-media:hover .tc3-assist-figure img {
    transform: scale(1.045);
}

/* ---------- Coluna do texto ---------- */
.tc3-assist-text {
    min-width: 0;
    max-width: 100%;
}

.tc3-assist .tc3-assist-title {
    margin-bottom: 16px;
}

.tc3-assist .tc3-rule {
    margin-bottom: 26px;
}

.tc3-assist-desc {
    max-width: 58ch;
    color: #5a6570;
    font-size: 1.03rem;
    line-height: 1.9;
    text-wrap: pretty;
}

.tc3-assist-desc p {
    margin: 0 0 1.15em;
}

.tc3-assist-desc p:last-child {
    margin-bottom: 0;
}

.tc3-assist-btn {
    margin-top: 30px;
    max-width: 100%;
}

/* ---------- Lado da foto (vale enquanto houver duas colunas) ----------
   O HTML nasce com a foto primeiro (que já é o certo no celular).
   Para "foto à direita" as colunas trocam de lugar na tela larga.
   A troca fica na regra base e é desfeita no bloco de celular mais abaixo:
   com "min-width: 901px" havia uma faixa morta entre 900px e 901px (larguras
   quebradas, que aparecem com zoom do navegador ou escala do Windows) em que
   a página já mostrava duas colunas mas a foto continuava à esquerda. */
.tc3-assist--foto-dir .tc3-assist-media {
    order: 2;
}
.tc3-assist--foto-dir .tc3-assist-text {
    order: 1;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
    .tc3-assist-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    /* Coluna única: a foto volta a ser a primeira, seja qual for a escolha. */
    .tc3-assist--foto-dir .tc3-assist-media,
    .tc3-assist--foto-dir .tc3-assist-text {
        order: 0;
    }

    .tc3-assist-desc {
        max-width: none;
    }

    .tc3-assist-glow {
        top: -3%;
        right: 2%;
        bottom: -3%;
        left: 2%;
        border-radius: 24px;
    }
}

@media (max-width: 600px) {
    .tc3-assist-glow {
        display: none;
    }

    .tc3-assist-figure {
        border-radius: 14px;
        box-shadow: 0 14px 30px rgba(var(--tc3-dark-rgb), .16);
    }

    .tc3-assist-figure img {
        aspect-ratio: 4 / 3;
    }

    .tc3-assist-desc {
        font-size: 1rem;
        line-height: 1.85;
    }

    .tc3-assist .tc3-rule {
        margin-bottom: 20px;
    }

    .tc3-assist-btn {
        width: 100%;
        margin-top: 24px;
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tc3-assist-figure img,
    .tc3-assist-media:hover .tc3-assist-figure img {
        transition: none;
        transform: none;
    }
}

/* ---------- diferenciais ---------- */
/* ============================================================
   DIFERENCIAIS: 3 blocos com frente e verso (flip card)
   Raiz: .tc3-dif  |  Âncora: #tc3-diferenciais
   Cores de marca só via variáveis --tc3-*.
   ============================================================ */

.tc3-dif {
    background: #f4f7fa;
    overflow: hidden;
}

.tc3-dif .tc3-dif-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 100%;
}

/* ---------- O cartão ---------- */
.tc3-dif .tc3-dif-card {
    position: relative;
    max-width: 100%;
    perspective: 1500px;
}

.tc3-dif .tc3-dif-inner {
    position: relative;
    display: grid;
    min-height: 330px;
    max-width: 100%;
    transform-style: preserve-3d;
    transition: transform .7s cubic-bezier(.2, .72, .3, 1);
}

.tc3-dif .tc3-dif-face {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 42px 26px;
    border-radius: 18px;
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.tc3-dif .tc3-dif-face--front {
    background: #fff;
    border: 1px solid #e6ecf2;
    box-shadow: 0 12px 30px rgba(30, 42, 53, .07);
}

.tc3-dif .tc3-dif-card:not(.tc3-dif-card--static) .tc3-dif-face--front {
    cursor: pointer;
}

.tc3-dif .tc3-dif-face--back {
    background: linear-gradient(155deg, var(--tc3-primary), var(--tc3-primary-dark));
    color: #fff;
    box-shadow: 0 16px 38px rgba(var(--tc3-primary-rgb), .34);
    transform: rotateY(180deg);
    pointer-events: none;
    cursor: default;
    /* Enquanto o verso está escondido ele sai do leitor de tela e do Tab.
       Some só depois da metade do giro, quando a face já virou de costas. */
    visibility: hidden;
    transition: visibility 0s linear .35s;
}

/* ---------- O giro ---------- */
@media (hover: hover) and (pointer: fine) {
    .tc3-dif .tc3-dif-card:hover .tc3-dif-inner { transform: rotateY(180deg); }
    .tc3-dif .tc3-dif-card:hover .tc3-dif-face--back { pointer-events: auto; visibility: visible; transition: visibility 0s; }
    .tc3-dif .tc3-dif-card:hover .tc3-dif-face--front { pointer-events: none; }
    .tc3-dif .tc3-dif-card--static:hover .tc3-dif-inner { transform: none; }
    .tc3-dif .tc3-dif-card--static:hover .tc3-dif-face--front { pointer-events: auto; }
}

.tc3-dif .tc3-dif-card.is-flipped .tc3-dif-inner { transform: rotateY(180deg); }
.tc3-dif .tc3-dif-card.is-flipped .tc3-dif-face--back { pointer-events: auto; visibility: visible; transition: visibility 0s; }
.tc3-dif .tc3-dif-card.is-flipped .tc3-dif-face--front { pointer-events: none; }

.tc3-dif .tc3-dif-card--static .tc3-dif-inner { transform: none; }

/* ---------- Ícone ---------- */
.tc3-dif .tc3-dif-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-bottom: 16px;
    border-radius: 50%;
    flex: 0 0 auto;
}
.tc3-dif .tc3-dif-face--front .tc3-dif-icon {
    background: rgba(var(--tc3-primary-rgb), .12);
    color: var(--tc3-primary);
}
.tc3-dif .tc3-dif-face--back .tc3-dif-icon {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}
.tc3-dif .tc3-dif-icon svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

/* ---------- Textos ---------- */
.tc3-dif .tc3-dif-title {
    margin: 0 0 10px;
    font-size: 1.22rem;
    color: #1e2a35;
}
.tc3-dif .tc3-dif-face--back .tc3-dif-title { color: #fff; }

.tc3-dif .tc3-dif-text {
    margin: 0;
    font-size: .97rem;
    line-height: 1.65;
    color: #5a6570;
}
.tc3-dif .tc3-dif-face--back .tc3-dif-text { color: rgba(255, 255, 255, .94); }

/* ---------- Botão "Ver mais" (frente) ---------- */
.tc3-dif .tc3-dif-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding: 9px 20px;
    border: 1px solid rgba(var(--tc3-primary-rgb), .45);
    border-radius: 999px;
    background: transparent;
    color: var(--tc3-primary);
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.tc3-dif .tc3-dif-toggle:hover {
    background: var(--tc3-primary);
    border-color: var(--tc3-primary);
    color: #fff;
}
.tc3-dif .tc3-dif-toggle svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ---------- Ações do verso ---------- */
.tc3-dif .tc3-dif-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    max-width: 100%;
}

.tc3-dif .tc3-dif-btn {
    padding: 12px 26px;
    font-size: .9rem;
}
.tc3-dif .tc3-dif-btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.tc3-dif .tc3-dif-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: .84rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.tc3-dif .tc3-dif-close:hover {
    background: #fff;
    border-color: #fff;
    color: var(--tc3-primary-dark);
}
.tc3-dif .tc3-dif-close svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ---------- Foco visível ---------- */
.tc3-dif .tc3-dif-toggle:focus-visible {
    outline: 3px solid var(--tc3-primary-light);
    outline-offset: 3px;
}
.tc3-dif .tc3-dif-close:focus-visible,
.tc3-dif .tc3-dif-btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
    .tc3-dif .tc3-dif-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (max-width: 700px) {
    .tc3-dif .tc3-dif-grid { grid-template-columns: 1fr; }
    .tc3-dif .tc3-dif-inner { min-height: 290px; }
    .tc3-dif .tc3-dif-face { padding: 34px 22px; }
    .tc3-dif .tc3-dif-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 12px;
    }
    .tc3-dif .tc3-dif-icon svg { width: 31px; height: 31px; }
    .tc3-dif .tc3-dif-title { font-size: 1.12rem; }
    .tc3-dif .tc3-dif-btn { padding: 11px 22px; }
}

/* ============================================================
   MOVIMENTO REDUZIDO: frente e verso empilhados, sem giro
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .tc3-dif .tc3-dif-inner {
        display: block;
        min-height: 0;
        transform: none !important;
        transition: none;
    }
    .tc3-dif .tc3-dif-face {
        transform: none !important;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
        pointer-events: auto !important;
        cursor: auto !important;
        visibility: visible !important;
        transition: none;
    }
    .tc3-dif .tc3-dif-face--front {
        border-radius: 18px 18px 0 0;
        border-bottom: 0;
        padding-bottom: 34px;
    }
    .tc3-dif .tc3-dif-face--back {
        border-radius: 0 0 18px 18px;
        box-shadow: none;
    }
    .tc3-dif .tc3-dif-card--static .tc3-dif-face--front { border-radius: 18px; border-bottom: 1px solid #e6ecf2; }
    .tc3-dif .tc3-dif-face--back .tc3-dif-icon { display: none; }
    .tc3-dif .tc3-dif-title-dup { display: none; }
    .tc3-dif .tc3-dif-toggle,
    .tc3-dif .tc3-dif-close { display: none; }
    .tc3-dif .tc3-dif-actions { margin-top: 0; }
    .tc3-dif .tc3-dif-actions--btn { margin-top: 18px; }
}

/* ---------- cta ---------- */
/* ============================================================
   SEÇÃO CTA: faixa de chamada
   Raiz: .tc3-cta
   Foto de fundo escurecida, título grande e botão de destaque.
   ============================================================ */

.tc3-cta {
    padding: 76px 0;
    background-color: var(--tc3-dark);
    background-attachment: scroll;
    overflow: hidden;
}

/* Escurecimento por cima da foto (sobrescreve o .tc3-overlay da base) */
.tc3-cta .tc3-overlay {
    background: linear-gradient(
        95deg,
        rgba(var(--tc3-dark-rgb), .93) 0%,
        rgba(var(--tc3-dark-rgb), .82) 46%,
        rgba(var(--tc3-secondary-rgb), .68) 100%
    );
}

/* Fio de luz no topo e na base da faixa */
.tc3-cta::before,
.tc3-cta::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tc3-primary), rgba(var(--tc3-primary-rgb), 0));
    z-index: 2;
    pointer-events: none;
}
.tc3-cta::before { top: 0; }
.tc3-cta::after  { bottom: 0; background: linear-gradient(270deg, var(--tc3-primary), rgba(var(--tc3-primary-rgb), 0)); }

.tc3-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 26px 46px;
    min-height: 110px;
}

.tc3-cta-title {
    flex: 1 1 420px;
    max-width: 100%;
    margin: 0;
    color: #fff;
    font-size: clamp(1.5rem, 3.4vw, 2.3rem);
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: -.01em;
    overflow-wrap: break-word;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.tc3-cta-action {
    flex: 0 0 auto;
    max-width: 100%;
}

.tc3-cta-btn {
    padding: 16px 42px;
    font-size: 1rem;
    max-width: 100%;
}

/* Só o título ou só o botão: tudo centralizado */
.tc3-cta-solo .tc3-cta-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.tc3-cta-solo .tc3-cta-title {
    flex: 0 1 auto;
    max-width: 820px;
}

/* ------------------------------------------------------------
   RESPONSIVO
   ------------------------------------------------------------ */
@media (max-width: 900px) {
    .tc3-cta { padding: 58px 0; }

    .tc3-cta-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 26px;
        min-height: 0;
    }

    .tc3-cta-title {
        flex: 0 1 auto;
        font-size: clamp(1.35rem, 5.6vw, 1.9rem);
    }

    .tc3-cta-action { width: 100%; }

    .tc3-cta-btn {
        width: 100%;
        max-width: 340px;
        padding: 15px 26px;
    }
}

@media (max-width: 480px) {
    .tc3-cta { padding: 48px 0; }
    .tc3-cta-btn { font-size: .94rem; }
}

/* ---------- plataforma ---------- */
/* ============================================================
   SEÇÃO PLATAFORMA (.tc3-plat)
   Duas colunas: texto de um lado, imagem do painel do outro.
   No celular a imagem sobe para cima do texto.
   ============================================================ */

.tc3-plat {
    background: #fff;
    overflow: hidden;
}

.tc3-plat-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 30px 60px;
}

/* ---------- Coluna do texto ---------- */
.tc3-plat-text {
    max-width: 540px;
    min-width: 0;
}

.tc3-plat-title {
    font-size: clamp(1.75rem, 3.4vw, 2.6rem);
    line-height: 1.18;
    margin: 0 0 18px;
    color: #1e2a35;
}

.tc3-plat-desc {
    font-size: 1.04rem;
    line-height: 1.8;
    color: #5a6570;
    margin: 0 0 30px;
}

.tc3-plat-btn {
    max-width: 100%;
}

/* ---------- Coluna da imagem ---------- */
.tc3-plat-media {
    position: relative;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Brilho suave atrás do painel (o site de referência usa um gradiente na coluna). */
.tc3-plat-media::before {
    content: '';
    position: absolute;
    top: -6%;
    right: -8%;
    bottom: -6%;
    left: 2%;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(var(--tc3-primary-rgb), .18), rgba(var(--tc3-primary-rgb), 0) 65%);
    z-index: 0;
    pointer-events: none;
}

.tc3-plat-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    height: auto;
    filter: drop-shadow(0 20px 38px rgba(var(--tc3-dark-rgb), .18));
}

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
    .tc3-plat-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }
    .tc3-plat-text {
        max-width: 640px;
        margin: 0 auto;
    }
    /* imagem acima do texto no celular e no tablet */
    .tc3-plat-media {
        order: -1;
    }
    .tc3-plat-media::before {
        top: 0;
        right: 4%;
        bottom: 0;
        left: 4%;
        border-radius: 22px;
    }
    .tc3-plat-img {
        max-width: 520px;
    }
}

@media (max-width: 600px) {
    .tc3-plat-title {
        font-size: 1.55rem;
        margin-bottom: 14px;
    }
    .tc3-plat-desc {
        font-size: .98rem;
        margin-bottom: 24px;
    }
    .tc3-plat-img {
        max-width: 100%;
        filter: drop-shadow(0 12px 24px rgba(var(--tc3-dark-rgb), .16));
    }
    .tc3-plat-btn {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* ---------- recursos ---------- */
/* ============================================================
   RECURSOS: círculo interativo de funcionalidades (.tc3-rec)

   Computador: os itens ficam em volta de um círculo e a descrição
   do item escolhido aparece no disco branco do meio (abas ARIA).
   Celular: o círculo some e vira um acordeão em lista.

   Nomes de classe próprios (tc3-rec-wheel, tc3-rec-node, tc3-rec-row)
   para não esbarrar no acordeão do FAQ (.tc3-faq).
   Cores de marca somente pelas variáveis --tc3-*.
   ============================================================ */

.tc3-rec {
    position: relative;
    overflow: hidden;
    background-color: var(--tc3-dark);
    color: #c9d3dc;
}

/* Sem foto de fundo: brilho discreto no lugar da imagem. */
.tc3-rec:not(.tc3-rec-com-foto) {
    background-image:
        radial-gradient(120% 90% at 12% 0%, rgba(var(--tc3-primary-rgb), .18) 0%, rgba(var(--tc3-dark-rgb), 0) 58%),
        radial-gradient(100% 80% at 100% 100%, rgba(var(--tc3-primary-rgb), .12) 0%, rgba(var(--tc3-dark-rgb), 0) 60%);
}

.tc3-rec .tc3-section-title { color: #fff; }
.tc3-rec .tc3-rec-head { margin-bottom: 46px; }

/* ---------- Duas colunas: círculo + cartão de chamada ---------- */
.tc3-rec .tc3-rec-content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.tc3-rec.tc3-rec-solo .tc3-rec-content {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
    margin: 0 auto;
}

/* ---------- Círculo ---------- */
.tc3-rec .tc3-rec-wheel-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tc3-rec .tc3-rec-wheel {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
}

/* Anel de apoio: 10% de recuo deixa o traço exatamente na volta dos itens */
.tc3-rec .tc3-rec-ring {
    position: absolute;
    inset: 10%;
    border: 1.5px solid var(--tc3-primary);
    border-radius: 50%;
    opacity: .55;
    z-index: 0;
    pointer-events: none;
}

/* Disco branco do meio */
.tc3-rec .tc3-rec-disc {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58%;
    height: 58%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    box-shadow:
        0 14px 40px rgba(0, 0, 0, .32),
        0 0 0 8px rgba(255, 255, 255, .06);
    z-index: 1;
    pointer-events: none;
}

/* Texto do item escolhido, dentro do disco.
   Medidas em porcentagem do círculo e presas à geometria do disco (58% de
   diâmetro, ou seja raio de 29%): com 42% de largura a metade da caixa mede
   21%, e a altura máxima que ainda cabe na circunferência é
   2 * raiz(29² - 21²) = 40%. Ficando em 38% sobra uma folga e o texto nunca
   escapa do branco (texto cinza em fundo escuro seria ilegível). Descrição
   comprida ganha barra de rolagem dentro do disco. */
.tc3-rec .tc3-rec-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42%;
    max-height: 38%;
    overflow-y: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.tc3-rec .tc3-rec-pane {
    transition: opacity .3s ease, transform .3s ease;
}
.tc3-rec .tc3-rec-pane[hidden] { display: none; }
.tc3-rec .tc3-rec-pane:focus-visible {
    outline: 2px solid var(--tc3-primary);
    outline-offset: 3px;
    border-radius: 8px;
}
.tc3-rec .tc3-rec-pane p {
    margin: 0;
    font-size: .86rem;
    line-height: 1.65;
    color: #444;
}

/* Entrada suave ao trocar de item */
.tc3-rec .tc3-rec-core.is-entrando .tc3-rec-pane {
    opacity: 0;
    transform: translateY(8px);
}

/* Itens em volta */
.tc3-rec .tc3-rec-orbit {
    position: absolute;
    inset: 0;
    z-index: 3;
}

/* Bolinhas: o tamanho acompanha o círculo (20% da largura). O PHP põe o centro
   de cada uma a 40% da largura contados do meio, então sobram 10% até a borda,
   que é exatamente a metade de uma bolinha de 20%. Com medida fixa em pixel,
   num círculo entre 500 e 560 px a bolinha passava alguns pixels da borda; em
   porcentagem ela encosta sempre certinho, e nos dois tamanhos de referência dá
   os mesmos 112 px (círculo de 560) e 100 px (círculo de 500) do desenho. */
.tc3-rec .tc3-rec-node {
    position: absolute;
    width: 20%;
    height: 20%;
    padding: 8px 6px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--tc3-primary);
    font-family: inherit;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .30);
    transition: background-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.tc3-rec .tc3-rec-node:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .42);
}

.tc3-rec .tc3-rec-node:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.tc3-rec .tc3-rec-node.is-active {
    background: var(--tc3-primary);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 16px 32px rgba(var(--tc3-primary-rgb), .58);
}

.tc3-rec .tc3-rec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
}
.tc3-rec .tc3-rec-icon svg,
.tc3-rec .tc3-rec-icon .tc3-rec-icon-img {
    width: 30px;
    height: 30px;
    max-width: 30px;
    object-fit: contain;
    display: block;
}

.tc3-rec .tc3-rec-name {
    font-size: .55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1px;
    line-height: 1.2;
    max-width: 88px;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Lista do celular fica escondida no computador */
.tc3-rec .tc3-rec-listwrap { display: none; }

/* ---------- Cartão de chamada ---------- */

/* Brilho no topo do cartão */

/* Faixa colorida na lateral */

/* ---------- Acordeão (celular) ---------- */
.tc3-rec .tc3-rec-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.tc3-rec .tc3-rec-row {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    overflow: hidden;
    transition: border-color .25s ease, background .25s ease;
}

.tc3-rec .tc3-rec-row.is-open {
    border-color: rgba(var(--tc3-primary-rgb), .5);
    background: rgba(255, 255, 255, .08);
}

.tc3-rec .tc3-rec-row-head {
    margin: 0;
    font-size: 1rem;
    line-height: inherit;
}

.tc3-rec .tc3-rec-row-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: .97rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.tc3-rec .tc3-rec-row-btn:focus-visible {
    outline: 3px solid var(--tc3-primary);
    outline-offset: -3px;
}

.tc3-rec .tc3-rec-icon-sm {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(var(--tc3-primary-rgb), .18);
    color: var(--tc3-primary);
}
.tc3-rec .tc3-rec-icon-sm svg,
.tc3-rec .tc3-rec-icon-sm .tc3-rec-icon-img {
    width: 20px;
    height: 20px;
    max-width: 20px;
}
.tc3-rec .tc3-rec-row.is-open .tc3-rec-icon-sm {
    background: var(--tc3-primary);
    color: #fff;
}

.tc3-rec .tc3-rec-row-name { flex: 1 1 auto; }

.tc3-rec .tc3-rec-caret {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transition: transform .25s ease, background .25s ease;
}
.tc3-rec .tc3-rec-row.is-open .tc3-rec-caret {
    transform: rotate(180deg);
    background: var(--tc3-primary);
}

.tc3-rec .tc3-rec-row-panel {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height .32s ease, visibility 0s linear .32s;
}
.tc3-rec .tc3-rec-row.is-open > .tc3-rec-row-panel {
    max-height: 520px;
    visibility: visible;
    transition: max-height .32s ease, visibility 0s;
}

.tc3-rec .tc3-rec-row-text { padding: 0 16px 16px 62px; }
.tc3-rec .tc3-rec-row-text p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: .92rem;
    line-height: 1.7;
}

/* ============================================================
   Telas médias: uma coluna só, círculo um pouco menor
   ============================================================ */
@media (max-width: 1080px) {
    .tc3-rec .tc3-rec-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
    .tc3-rec .tc3-rec-wheel { max-width: 500px; }
    .tc3-rec .tc3-rec-icon,
    .tc3-rec .tc3-rec-icon svg,
    .tc3-rec .tc3-rec-icon .tc3-rec-icon-img { width: 26px; height: 26px; max-width: 26px; }
    .tc3-rec .tc3-rec-name { font-size: .52rem; max-width: 80px; }
}

/* ============================================================
   Celular: acordeão no lugar do círculo
   ============================================================ */
@media (max-width: 879px) {
    .tc3-rec .tc3-rec-wheel-wrap { display: none; }
    .tc3-rec .tc3-rec-listwrap { display: block; }

    /* A lista vem antes do cartão de chamada. */
    .tc3-rec > .tc3-container {
        display: flex;
        flex-direction: column;
    }
    .tc3-rec .tc3-rec-head { order: 1; }
    .tc3-rec .tc3-rec-listwrap { order: 2; margin-bottom: 32px; }
    .tc3-rec .tc3-rec-content { order: 3; }

    .tc3-rec .tc3-rec-content,
    .tc3-rec.tc3-rec-solo .tc3-rec-content { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 480px) {
    .tc3-rec .tc3-rec-row-btn { gap: 10px; padding: 13px 13px; font-size: .92rem; }
    .tc3-rec .tc3-rec-icon-sm { width: 30px; height: 30px; border-radius: 9px; }
    .tc3-rec .tc3-rec-icon-sm svg,
    .tc3-rec .tc3-rec-icon-sm .tc3-rec-icon-img { width: 18px; height: 18px; max-width: 18px; }
    .tc3-rec .tc3-rec-row-text { padding: 0 13px 14px 53px; }
}

/* ============================================================
   Menos movimento
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    .tc3-rec .tc3-rec-node:hover { transform: translate(-50%, -50%); }
    .tc3-rec .tc3-rec-node.is-active { transform: translate(-50%, -50%) scale(1.06); }
    .tc3-rec .tc3-rec-core.is-entrando .tc3-rec-pane { opacity: 1; transform: none; }
}

/* ---------- demo ---------- */

/* Layout original da seção (grade, carrossel, cartão e controles).
   Vem antes do bloco novo para que o novo continue vencendo onde houver colisão. */
/* ============================================================
   SEÇÃO DEMONSTRAÇÃO (.tc3-demo)
   Cores de marca somente via variáveis --tc3-*.
   ============================================================ */

.tc3-demo {
    background: #fff;
    overflow: hidden;
}

/* Brilho suave atrás da coluna da imagem */
.tc3-demo::before {
    content: '';
    position: absolute;
    top: 12%;
    left: -140px;
    width: 380px;
    height: 380px;
    max-width: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--tc3-primary-rgb), .13), rgba(var(--tc3-primary-rgb), 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.tc3-demo .tc3-demo-head { margin-bottom: 46px; }
.tc3-demo .tc3-demo-head .tc3-section-title { margin-bottom: 20px; }
.tc3-demo .tc3-demo-head .tc3-rule { display: block; }

/* ---------- Grade: imagem + conteúdo ---------- */
.tc3-demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: center;
}

.tc3-demo-grid-solo { max-width: 900px; margin: 0 auto; }

/* ---------- Imagem de apoio ---------- */
.tc3-demo-media { position: relative; }

.tc3-demo-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #eef2f5;
    box-shadow: 0 22px 48px rgba(var(--tc3-dark-rgb), .18);
}
.tc3-demo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(var(--tc3-primary-rgb), .28);
    border-radius: 16px;
    pointer-events: none;
}
.tc3-demo-frame img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease;
}
.tc3-demo-media:hover .tc3-demo-frame img { transform: scale(1.04); }

/* ---------- Lista de funcionalidades ---------- */
.tc3-demo-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 22px;
}

.tc3-demo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f6f8fa;
    border: 1px solid #e6ebef;
    color: #3f4a55;
    font-size: .96rem;
    font-weight: 500;
    line-height: 1.4;
    transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.tc3-demo-item:hover {
    background: #fff;
    border-color: rgba(var(--tc3-primary-rgb), .45);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(var(--tc3-primary-rgb), .14);
}

.tc3-demo-check {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tc3-primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(var(--tc3-primary-rgb), .35);
}
.tc3-demo-check svg { display: block; }

.tc3-demo-item-text {
    min-width: 0;
    overflow-wrap: break-word;
}

/* ---------- Botão ---------- */
.tc3-demo-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}
.tc3-demo-btn { max-width: 100%; }
.tc3-demo-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
}
.tc3-demo-btn-icon svg { margin-left: 1px; }

/* ---------- Observação ---------- */
.tc3-demo-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin: 0;
    text-align: center;
    color: #7b8794;
    font-size: .86rem;
    line-height: 1.55;
}
.tc3-demo-note-icon {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--tc3-primary);
    display: inline-flex;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (min-width: 620px) {
    .tc3-demo-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 992px) {
    .tc3-demo-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 54px; }
    .tc3-demo-grid-solo { grid-template-columns: 1fr; }
    .tc3-demo-content { padding-left: 6px; }
}

@media (max-width: 619px) {
    .tc3-demo::before { display: none; }
    .tc3-demo .tc3-demo-head { margin-bottom: 34px; }
    .tc3-demo-grid { gap: 30px; }
    .tc3-demo-item { padding: 9px 12px; font-size: .92rem; }
    .tc3-demo-actions .tc3-demo-btn { width: 100%; padding-left: 20px; padding-right: 20px; }
    .tc3-demo-note { font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
    .tc3-demo-frame img,
    .tc3-demo-item { transition: none; }
    .tc3-demo-media:hover .tc3-demo-frame img { transform: none; }
    .tc3-demo-item:hover { transform: none; }
}

/* Acréscimos desta versão. */
/* ============================================================
   SEÇÃO DEMONSTRAÇÃO — carrossel de imagens (.tc3-demo-carousel)
   Complementa o bloco .tc3-demo do main.css.
   Cores de marca somente via variáveis --tc3-*.
   ============================================================ */

/* O carrossel reaproveita a moldura .tc3-demo-frame (raio, sombra e borda). */
.tc3-demo-carousel {
    position: relative;
    isolation: isolate;
}

/* ---------- Palco dos slides ---------- */
.tc3-demo-carousel .tc3-demo-slides {
    position: relative;
    z-index: 0; /* segura os slides abaixo da borda e dos controles */
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef2f5;
}

/* Navegadores antigos sem aspect-ratio: mantém a altura pela proporção. */
@supports not (aspect-ratio: 16 / 10) {
    .tc3-demo-carousel .tc3-demo-slides::before {
        content: '';
        display: block;
        padding-top: 62.5%;
    }
}

/* Troca sem clarão no meio: a imagem que SAI fica por cima e desaparece,
   a que ENTRA já nasce opaca por baixo. Se as duas animassem a opacidade ao
   mesmo tempo, o fundo do palco apareceria por entre elas na metade da troca. */
.tc3-demo-carousel .tc3-demo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity .7s ease;
    will-change: opacity;
}
.tc3-demo-carousel .tc3-demo-slide.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
    transition: none;
}

.tc3-demo-carousel .tc3-demo-slide img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: none;
    transition: none;
}

/* O zoom no hover do main.css atrapalha o crossfade: desligado aqui. */
.tc3-demo-media:hover .tc3-demo-carousel .tc3-demo-slide img {
    transform: none;
}

/* ---------- Uma imagem só: sem corte, altura natural ---------- */
.tc3-demo-carousel-single .tc3-demo-slides {
    aspect-ratio: auto;
    background: transparent;
}
@supports not (aspect-ratio: 16 / 10) {
    .tc3-demo-carousel-single .tc3-demo-slides::before {
        display: none;
    }
}
.tc3-demo-carousel-single .tc3-demo-slide {
    position: relative;
    opacity: 1;
    z-index: 1;
    transition: none;
}
.tc3-demo-carousel-single .tc3-demo-slide img {
    height: auto;
    object-fit: fill;
}

/* ---------- Setas ---------- */
.tc3-demo-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .92);
    color: var(--tc3-dark);
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(var(--tc3-dark-rgb), .28);
    transition: background .22s ease, color .22s ease, box-shadow .22s ease, opacity .22s ease;
}
.tc3-demo-arrow svg { display: block; }
.tc3-demo-arrow:hover,
.tc3-demo-arrow:focus-visible {
    background: var(--tc3-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(var(--tc3-primary-rgb), .45);
}
.tc3-demo-arrow:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
.tc3-demo-prev { left: 12px; }
.tc3-demo-next { right: 12px; }

/* No desktop as setas ficam discretas e ganham corpo no hover da moldura. */
@media (hover: hover) and (min-width: 768px) {
    .tc3-demo-arrow { opacity: .75; }
    .tc3-demo-carousel:hover .tc3-demo-arrow,
    .tc3-demo-carousel:focus-within .tc3-demo-arrow { opacity: 1; }
}

/* ---------- Indicadores ---------- */
.tc3-demo-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(var(--tc3-dark-rgb), .38);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    max-width: calc(100% - 24px);
    flex-wrap: wrap;
    justify-content: center;
}

.tc3-demo-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition: background .22s ease, transform .22s ease, width .22s ease;
}
.tc3-demo-dot:hover { background: rgba(255, 255, 255, .85); }
.tc3-demo-dot.is-active {
    background: var(--tc3-primary);
    width: 24px;
    border-radius: 999px;
}
.tc3-demo-dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 619px) {
    .tc3-demo-carousel .tc3-demo-slides { aspect-ratio: 4 / 3; }

    @supports not (aspect-ratio: 4 / 3) {
        .tc3-demo-carousel .tc3-demo-slides::before { padding-top: 75%; }
    }

    .tc3-demo-carousel-single .tc3-demo-slides { aspect-ratio: auto; }

    .tc3-demo-arrow {
        width: 34px;
        height: 34px;
    }
    .tc3-demo-prev { left: 8px; }
    .tc3-demo-next { right: 8px; }

    .tc3-demo-dots {
        bottom: 10px;
        gap: 6px;
        padding: 6px 10px;
    }
    .tc3-demo-dot { width: 8px; height: 8px; }
    .tc3-demo-dot.is-active { width: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .tc3-demo-carousel .tc3-demo-slide,
    .tc3-demo-arrow,
    .tc3-demo-dot { transition: none; }
}

/* ---------- sobre ---------- */
/* ============================================================
   SEÇÃO SOBRE NÓS — .tc3-sobre
   Duas colunas: texto institucional + imagem.
   No celular a imagem vai para cima e o texto para baixo.
   ============================================================ */

.tc3-sobre {
    background: #f5f8fa;
    overflow: hidden;
}

.tc3-sobre-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 40px 64px;
}

/* Coluna sozinha (só texto ou só imagem): ocupa a linha inteira, centralizada. */
.tc3-sobre-grid > .tc3-sobre-text:only-child,
.tc3-sobre-grid > .tc3-sobre-media:only-child {
    grid-column: 1 / -1;
    max-width: 820px;
    margin: 0 auto;
}

/* ---------- Coluna de texto ---------- */
.tc3-sobre-text {
    min-width: 0;
    max-width: 100%;
}

.tc3-sobre .tc3-sobre-title {
    margin-bottom: 16px;
}

.tc3-sobre .tc3-rule {
    margin-bottom: 26px;
}

.tc3-sobre-desc {
    max-width: 62ch;
    color: #5a6570;
    font-size: 1.03rem;
    line-height: 1.9;
    letter-spacing: .002em;
    text-wrap: pretty;
}

.tc3-sobre-desc p {
    margin: 0 0 1.15em;
}

.tc3-sobre-desc p:last-child {
    margin-bottom: 0;
}

/* Primeira linha um pouco mais presente, ajuda a puxar a leitura. */
.tc3-sobre-desc p:first-child {
    color: #4a5561;
}

/* ---------- Coluna da imagem ---------- */
.tc3-sobre-media {
    position: relative;
    min-width: 0;
    max-width: 100%;
}

/* Moldura decorativa deslocada atrás da foto. */
.tc3-sobre-frame {
    position: absolute;
    top: 20px;
    right: -18px;
    bottom: -18px;
    left: 20px;
    display: block;
    border: 2px solid rgba(var(--tc3-primary-rgb), .45);
    border-radius: 20px;
    pointer-events: none;
    z-index: 0;
}

.tc3-sobre-figure {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(var(--tc3-dark-rgb), .18);
}

.tc3-sobre-figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform .6s ease;
}

.tc3-sobre-media:hover .tc3-sobre-figure img {
    transform: scale(1.045);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
    .tc3-sobre-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    /* Imagem em cima, texto embaixo. */
    .tc3-sobre-media {
        order: -1;
    }

    .tc3-sobre-text {
        max-width: none;
    }

    .tc3-sobre-desc {
        max-width: none;
    }

    .tc3-sobre-frame {
        top: 14px;
        right: -12px;
        bottom: -12px;
        left: 14px;
        border-radius: 16px;
    }
}

@media (max-width: 600px) {
    .tc3-sobre-frame {
        display: none;
    }

    .tc3-sobre-figure {
        border-radius: 14px;
        box-shadow: 0 14px 30px rgba(var(--tc3-dark-rgb), .16);
    }

    .tc3-sobre-figure img {
        aspect-ratio: 4 / 3;
    }

    .tc3-sobre-desc {
        font-size: 1rem;
        line-height: 1.85;
    }

    .tc3-sobre .tc3-rule {
        margin-bottom: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tc3-sobre-figure img,
    .tc3-sobre-media:hover .tc3-sobre-figure img {
        transition: none;
        transform: none;
    }
}

/* ---------- aplicativos ---------- */
/* ============================================================
   SEÇÃO APLICATIVOS (.tc3-app)
   Imagem à esquerda, texto e selos de loja à direita.
   Cores de marca somente via variáveis --tc3-*.
   ============================================================ */

.tc3-app {
    background: #f6f8fa;
    overflow: hidden;
}

.tc3-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* ---------- Imagem ---------- */
.tc3-app-media {
    position: relative;
    max-width: 100%;
}
.tc3-app-media::before {
    content: '';
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: 168px;
    height: 168px;
    max-width: 40%;
    border-radius: 26px;
    background: rgba(var(--tc3-primary-rgb), .16);
    z-index: 0;
}
.tc3-app-media::after {
    content: '';
    position: absolute;
    right: -14px;
    top: -14px;
    width: 92px;
    height: 92px;
    max-width: 26%;
    border-radius: 50%;
    border: 3px solid rgba(var(--tc3-primary-rgb), .28);
    z-index: 0;
}
.tc3-app-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 24px 52px rgba(var(--tc3-dark-rgb), .2);
}

/* ---------- Conteúdo ---------- */
.tc3-app-content {
    min-width: 0;
}
.tc3-app-content:only-child {
    grid-column: 1 / -1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.tc3-app-content:only-child .tc3-rule-left {
    margin-left: auto;
    margin-right: auto;
}
.tc3-app-content:only-child .tc3-app-stores {
    justify-content: center;
}

.tc3-app-title {
    margin-bottom: 16px;
}
.tc3-app .tc3-rule {
    margin-bottom: 22px;
}
.tc3-app-text {
    font-size: 1.03rem;
    max-width: 560px;
    margin-bottom: 0;
}

/* ---------- Selos das lojas ---------- */
.tc3-app-stores {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.tc3-app-badge {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.tc3-app-badge:hover,
.tc3-app-badge:focus-visible {
    transform: translateY(-3px) scale(1.03);
}
.tc3-app-badge img {
    max-height: 58px;
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Botão de reserva quando não há imagem do selo */
.tc3-app-badge-fallback {
    gap: 12px;
    min-width: 194px;
    padding: 11px 24px;
    border-radius: 12px;
    background: var(--tc3-dark);
    color: #fff;
    box-shadow: 0 12px 26px rgba(var(--tc3-dark-rgb), .24);
}
.tc3-app-badge-fallback:hover,
.tc3-app-badge-fallback:focus-visible {
    background: var(--tc3-primary);
    color: #fff;
    box-shadow: 0 16px 30px rgba(var(--tc3-primary-rgb), .34);
}
.tc3-app-badge-icon {
    display: inline-flex;
    flex: 0 0 auto;
    line-height: 0;
}
.tc3-app-badge-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
    min-width: 0;
}
.tc3-app-badge-small {
    font-size: .63rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .82;
}
.tc3-app-badge-big {
    font-size: 1.02rem;
    font-weight: 700;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
    .tc3-app-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .tc3-app .tc3-rule-left {
        margin-left: auto;
        margin-right: auto;
    }
    .tc3-app-text {
        margin-left: auto;
        margin-right: auto;
    }
    .tc3-app-stores {
        justify-content: center;
    }
    .tc3-app-media::before,
    .tc3-app-media::after {
        display: none;
    }
    .tc3-app-img {
        box-shadow: 0 16px 34px rgba(var(--tc3-dark-rgb), .16);
    }
}

@media (max-width: 560px) {
    .tc3-app-stores {
        gap: 12px;
    }
    .tc3-app-badge img {
        max-height: 50px;
    }
    .tc3-app-badge-fallback {
        flex: 1 1 100%;
        min-width: 0;
        justify-content: center;
        padding: 11px 18px;
    }
}

/* ---------- status ---------- */
/* ============================================================
   SEÇÃO STATUS — faixa escura com contadores em anel
   Classe raiz: .tc3-status
   ============================================================ */

.tc3-status {
    overflow: hidden;
}

.tc3-status .tc3-section-head {
    margin-bottom: 48px;
}

.tc3-status .tc3-status-title {
    color: #fff;
    margin-bottom: 16px;
}

.tc3-status .tc3-rule {
    margin-bottom: 20px;
}

.tc3-status .tc3-status-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ---------- Grade dos indicadores ---------- */
.tc3-status .tc3-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 30px;
    max-width: 960px;
    margin: 0 auto;
}

.tc3-status .tc3-status-item {
    display: flex;
    justify-content: center;
}

/* ---------- Anel ---------- */
.tc3-status .tc3-status-dial {
    position: relative;
    width: 210px;
    height: 210px;
    max-width: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(var(--tc3-primary-rgb), .16), rgba(255, 255, 255, .03) 62%, transparent 72%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.tc3-status .tc3-status-ring {
    display: block;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}

.tc3-status .tc3-status-track,
.tc3-status .tc3-status-bar {
    fill: none;
    stroke-width: 7;
    stroke-linecap: round;
}

.tc3-status .tc3-status-track {
    stroke: rgba(255, 255, 255, .16);
}

.tc3-status .tc3-status-bar {
    stroke: var(--tc3-primary);
    filter: drop-shadow(0 0 6px rgba(var(--tc3-primary-rgb), .55));
}

/* ---------- Conteúdo dentro do anel ---------- */
.tc3-status .tc3-status-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 26px;
    text-align: center;
}

.tc3-status .tc3-status-label {
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .01em;
    overflow-wrap: break-word;
    word-break: break-word;
}

.tc3-status .tc3-status-number {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    color: #fff;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.tc3-status .tc3-status-pct {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tc3-primary-light);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
    .tc3-status .tc3-section-head {
        margin-bottom: 38px;
    }

    .tc3-status .tc3-status-grid {
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        gap: 30px 22px;
    }

    .tc3-status .tc3-status-dial {
        width: 190px;
        height: 190px;
    }

    .tc3-status .tc3-status-number {
        font-size: 2.05rem;
    }
}

@media (max-width: 600px) {
    .tc3-status .tc3-status-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
        max-width: 320px;
    }

    .tc3-status .tc3-status-dial {
        width: 200px;
        height: 200px;
    }

    .tc3-status .tc3-status-subtitle {
        font-size: .98rem;
    }

    .tc3-status .tc3-status-label {
        font-size: .86rem;
    }

    .tc3-status .tc3-status-number {
        font-size: 2rem;
    }
}

/* ---------- depoimentos ---------- */

/* Layout original da seção (grade, carrossel, cartão e controles).
   Vem antes do bloco novo para que o novo continue vencendo onde houver colisão. */
/* ============================================================
   SEÇÃO DEPOIMENTOS — carrossel de avaliações de clientes
   Classe raiz: .tc3-dep
   Mobile-first: 1 cartão por vez; a partir de 768px, 2 por vez.
   ============================================================ */

.tc3-dep {
    overflow: hidden;
}

.tc3-dep .tc3-dep-head {
    margin-bottom: 44px;
}

.tc3-dep .tc3-dep-title {
    margin-bottom: 16px;
}

/* ---------- Carrossel ---------- */
.tc3-dep .tc3-dep-carousel {
    position: relative;
    max-width: 100%;
}

.tc3-dep .tc3-dep-viewport {
    overflow: hidden;
    max-width: 100%;
    /* espaço vertical para a sombra dos cartões não ser cortada */
    padding: 10px 0 22px;
}

.tc3-dep .tc3-dep-track {
    display: flex;
    align-items: stretch;
    gap: 26px;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.tc3-dep .tc3-dep-card {
    flex: 0 0 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
}

/* ---------- Cartão ---------- */
.tc3-dep .tc3-dep-inner {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 34px 30px 30px;
    background: #fff;
    border: 1px solid #eaeff3;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(16, 24, 32, .07);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
}

.tc3-dep .tc3-dep-inner:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--tc3-primary-rgb), .3);
    box-shadow: 0 18px 40px rgba(16, 24, 32, .12);
}

.tc3-dep .tc3-dep-quote {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 54px;
    height: 54px;
    color: var(--tc3-primary);
    opacity: .13;
    pointer-events: none;
}

/* ---------- Pessoa ---------- */
.tc3-dep .tc3-dep-person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.tc3-dep .tc3-dep-avatar {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tc3-primary), var(--tc3-accent));
    box-shadow: 0 6px 16px rgba(var(--tc3-primary-rgb), .28);
}

.tc3-dep .tc3-dep-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc3-dep .tc3-dep-initial {
    color: #fff;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .01em;
}

.tc3-dep .tc3-dep-person-info {
    min-width: 0;
}

.tc3-dep .tc3-dep-name {
    display: block;
    color: #1e2a35;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
}

.tc3-dep .tc3-dep-role {
    display: block;
    margin-top: 5px;
    color: var(--tc3-primary);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ---------- Texto ---------- */
.tc3-dep .tc3-dep-body .tc3-stars {
    margin-bottom: 10px;
}

.tc3-dep .tc3-dep-text {
    margin: 0;
    padding: 0;
    border: 0;
    color: #5a6570;
    font-size: .97rem;
    line-height: 1.75;
    /* link ou palavra gigante quebra dentro do cartão em vez de esticá-lo */
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ---------- Controles ---------- */
.tc3-dep .tc3-dep-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 4px;
}

.tc3-dep .tc3-dep-carousel.tc3-dep-static .tc3-dep-controls {
    display: none;
}

.tc3-dep .tc3-dep-arrow {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 2px solid rgba(var(--tc3-primary-rgb), .35);
    border-radius: 50%;
    background: #fff;
    color: var(--tc3-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.tc3-dep .tc3-dep-arrow:hover {
    background: var(--tc3-primary);
    border-color: var(--tc3-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(var(--tc3-primary-rgb), .32);
}

.tc3-dep .tc3-dep-arrow:focus-visible {
    outline: 3px solid rgba(var(--tc3-primary-rgb), .45);
    outline-offset: 2px;
}

.tc3-dep .tc3-dep-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.tc3-dep .tc3-dep-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #c3cfd9;
    cursor: pointer;
    transition: width .28s ease, background .28s ease;
}

.tc3-dep .tc3-dep-dot:hover {
    background: rgba(var(--tc3-primary-rgb), .6);
}

.tc3-dep .tc3-dep-dot.is-active {
    width: 30px;
    background: var(--tc3-primary);
}

.tc3-dep .tc3-dep-dot:focus-visible {
    outline: 3px solid rgba(var(--tc3-primary-rgb), .45);
    outline-offset: 3px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (min-width: 768px) {
    /* dois cartões por vez, descontando o vão de 26px */
    .tc3-dep .tc3-dep-card {
        flex-basis: calc((100% - 26px) / 2);
    }
}

@media (max-width: 767px) {
    .tc3-dep .tc3-dep-head {
        margin-bottom: 34px;
    }

    .tc3-dep .tc3-dep-inner {
        padding: 28px 22px 26px;
    }

    .tc3-dep .tc3-dep-quote {
        width: 44px;
        height: 44px;
        top: 14px;
        right: 14px;
    }

    .tc3-dep .tc3-dep-avatar {
        flex-basis: 60px;
        width: 60px;
        height: 60px;
    }

    .tc3-dep .tc3-dep-initial {
        font-size: 1.4rem;
    }

    .tc3-dep .tc3-dep-text {
        font-size: .94rem;
    }

    .tc3-dep .tc3-dep-controls {
        gap: 12px;
    }

    .tc3-dep .tc3-dep-arrow {
        width: 42px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tc3-dep .tc3-dep-track {
        transition: none;
    }

    .tc3-dep .tc3-dep-inner:hover {
        transform: none;
    }

    .tc3-dep .tc3-dep-arrow:hover {
        transform: none;
    }
}

.tc3-dep .tc3-dep-col-main,
.tc3-dep .tc3-dep-col-side {
    min-width: 0;
}

.tc3-dep.tc3-dep-has-carousel .tc3-dep-col-side {
    margin-top: 34px;
}

/* Mosaico sozinho: não deixa a foto esticar demais numa tela larga. */
.tc3-dep:not(.tc3-dep-has-carousel) .tc3-dep-col-side {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* ------------------------------------------------------------
   4. Tela COM mouse: a legenda entra no hover
   Fora deste bloco (celular e tablet) ela nasce visível e continua visível.
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   5. Responsivo
   ------------------------------------------------------------ */
@media (min-width: 992px) {

    /* Na coluna estreita o cartão passa a ocupar a largura toda: o carrossel
       mostra um depoimento por vez. A contagem do JS é feita medindo o cartão
       de verdade, então ele se ajusta sozinho, sem tocar no script. */
}

/* Faixa apertada: as duas colunas já existem mas a tela ainda é curta, então a
   foto fica pequena. Diminui a legenda para ela não cobrir a imagem inteira. */

@media (max-width: 767px) {
    .tc3-dep.tc3-dep-has-carousel .tc3-dep-col-side {
        margin-top: 26px;
    }
}

/* Celular estreito: uma foto por linha, em faixa, para a frase caber inteira. */

/* ------------------------------------------------------------
   6. Menos movimento
   ------------------------------------------------------------ */

/* ---------- contato ---------- */
/* ============================================================
   SEÇÃO FALE CONOSCO / .tc3-ct
   Título com traço, cartões clicáveis com ícone (telefone,
   WhatsApp, Instagram e e-mail) e, abaixo, endereço + mapa.
   ============================================================ */

.tc3-ct {
    background: #fff;
    overflow: hidden;
}

.tc3-ct .tc3-ct-head {
    margin-bottom: 48px;
}

.tc3-ct .tc3-ct-head .tc3-section-title {
    margin-bottom: 18px;
}

/* ---------- Cartões de contato ---------- */
.tc3-ct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.tc3-ct-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    max-width: 100%;
    padding: 34px 24px 30px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5ecf2;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(var(--tc3-dark-rgb), .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tc3-ct-card:hover,
.tc3-ct-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(var(--tc3-primary-rgb), .55);
    box-shadow: 0 18px 38px rgba(var(--tc3-dark-rgb), .13);
}

.tc3-ct-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--tc3-primary);
    background: rgba(var(--tc3-primary-rgb), .1);
    border: 2px solid rgba(var(--tc3-primary-rgb), .35);
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.tc3-ct-icon svg {
    display: block;
    width: 30px;
    height: 30px;
}

.tc3-ct-card:hover .tc3-ct-icon,
.tc3-ct-card:focus-within .tc3-ct-icon {
    background: var(--tc3-primary);
    border-color: var(--tc3-primary);
    color: #fff;
    transform: scale(1.06);
}

.tc3-ct-card-body {
    min-width: 0;
    max-width: 100%;
}

.tc3-ct-card-title {
    margin: 0 0 8px;
    font-size: 1.12rem;
    color: #1e2a35;
}

.tc3-ct-value {
    display: block;
    max-width: 100%;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1e2a35;
    overflow-wrap: anywhere;
    transition: color .2s ease;
}

a.tc3-ct-value:hover,
a.tc3-ct-value:focus {
    color: var(--tc3-primary);
}

/* Link esticado: o cartão inteiro fica clicável, sem repetir marcação. */
.tc3-ct-stretch::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
}

.tc3-ct-stretch:focus-visible {
    outline: 2px solid var(--tc3-primary);
    outline-offset: 3px;
    border-radius: 6px;
}

.tc3-ct-note {
    margin: 10px 0 0;
    font-size: .9rem;
    line-height: 1.6;
    color: #6b7783;
}

/* ---------- Endereço + mapa ---------- */
.tc3-ct-place {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
    gap: 28px;
    margin-top: 48px;
}

/* Só endereço ou só mapa: ocupa a linha inteira. */
.tc3-ct-place > .tc3-ct-address:only-child,
.tc3-ct-place > .tc3-ct-map:only-child {
    grid-column: 1 / -1;
}

.tc3-ct-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
    padding: 28px;
    background: #f5f8fa;
    border: 1px solid #e5ecf2;
    border-radius: 18px;
}

.tc3-ct-address-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--tc3-primary);
    color: #fff;
    box-shadow: 0 8px 18px rgba(var(--tc3-primary-rgb), .3);
}

.tc3-ct-address-body {
    min-width: 0;
}

.tc3-ct-address-title {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: #1e2a35;
}

.tc3-ct-address p {
    margin: 0;
    color: #5a6570;
    font-size: .98rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.tc3-ct-map {
    position: relative;
    min-width: 0;
    max-width: 100%;
    min-height: 320px;
    border: 1px solid #e5ecf2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(var(--tc3-dark-rgb), .1);
    background: #eef2f5;
}

.tc3-ct-map iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
    .tc3-ct .tc3-ct-head {
        margin-bottom: 36px;
    }

    .tc3-ct-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 18px;
    }

    .tc3-ct-card {
        padding: 28px 18px 24px;
    }

    .tc3-ct-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 14px;
    }

    .tc3-ct-icon svg {
        width: 27px;
        height: 27px;
    }

    .tc3-ct-place {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        margin-top: 36px;
    }

    .tc3-ct-map {
        min-height: 280px;
    }
}

@media (max-width: 600px) {
    .tc3-ct-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .tc3-ct-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 20px 18px;
    }

    .tc3-ct-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 0;
    }

    .tc3-ct-icon svg {
        width: 24px;
        height: 24px;
    }

    .tc3-ct-card-title {
        margin-bottom: 3px;
        font-size: 1rem;
    }

    .tc3-ct-value {
        font-size: .98rem;
    }

    .tc3-ct-note {
        margin-top: 4px;
        font-size: .85rem;
    }

    .tc3-ct-card:hover,
    .tc3-ct-card:focus-within {
        transform: none;
    }

    .tc3-ct-address {
        padding: 22px 18px;
        gap: 13px;
    }

    .tc3-ct-address-icon {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .tc3-ct-map {
        min-height: 240px;
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tc3-ct-card,
    .tc3-ct-icon,
    .tc3-ct-value {
        transition: none;
    }

    .tc3-ct-card:hover,
    .tc3-ct-card:focus-within {
        transform: none;
    }

    .tc3-ct-card:hover .tc3-ct-icon,
    .tc3-ct-card:focus-within .tc3-ct-icon {
        transform: none;
    }
}

/* ---------- faq ---------- */
/* ============================================================
   PERGUNTAS FREQUENTES: acordeao em coluna unica (.tc3-faq)
   Classes e ids próprios (tc3-faq) para não conflitar com o
   acordeão da seção de Recursos (.tc3-rec).
   ============================================================ */

.tc3-faq { overflow: hidden; }

.tc3-faq .tc3-faq-head { margin-bottom: 42px; }

/* ---------- Lista ---------- */
.tc3-faq .tc3-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
}

.tc3-faq .tc3-faq-item {
    background: #fff;
    border: 1px solid #e4eaef;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.tc3-faq .tc3-faq-item:hover { border-color: rgba(var(--tc3-primary-rgb), .35); }
.tc3-faq .tc3-faq-item.is-open {
    border-color: rgba(var(--tc3-primary-rgb), .45);
    box-shadow: 0 14px 34px rgba(var(--tc3-dark-rgb), .10);
}

/* ---------- Pergunta (botão) ---------- */
.tc3-faq .tc3-faq-heading {
    margin: 0;
    font-size: 1rem;
    line-height: inherit;
}

.tc3-faq .tc3-faq-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: 0;
    text-align: left;
    color: #1e2a35;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    transition: color .2s ease;
}
.tc3-faq .tc3-faq-toggle:hover { color: var(--tc3-primary); }
.tc3-faq .tc3-faq-toggle:focus-visible {
    outline: 2px solid var(--tc3-primary);
    outline-offset: -3px;
    border-radius: 14px;
}
.tc3-faq .tc3-faq-item.is-open .tc3-faq-toggle { color: var(--tc3-primary); }

.tc3-faq .tc3-faq-q {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ---------- Sinal de mais que vira menos ---------- */
.tc3-faq .tc3-faq-mark {
    position: relative;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--tc3-primary-rgb), .12);
    color: var(--tc3-primary);
    transition: background .25s ease, color .25s ease;
}
.tc3-faq .tc3-faq-mark::before,
.tc3-faq .tc3-faq-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform .3s ease, opacity .25s ease;
}
.tc3-faq .tc3-faq-mark::after { transform: translate(-50%, -50%) rotate(90deg); }

.tc3-faq .tc3-faq-item.is-open .tc3-faq-mark {
    background: var(--tc3-primary);
    color: #fff;
}
.tc3-faq .tc3-faq-item.is-open .tc3-faq-mark::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

/* ---------- Resposta ---------- */
.tc3-faq .tc3-faq-panel {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height .38s ease, visibility 0s linear .38s;
}
.tc3-faq .tc3-faq-item.is-open > .tc3-faq-panel {
    max-height: 900px; /* reserva até o script medir a altura real */
    visibility: visible;
    transition: max-height .38s ease, visibility 0s linear 0s;
}

.tc3-faq .tc3-faq-panel-inner {
    padding: 0 22px 20px;
    border-top: 1px solid #eef2f5;
    margin-top: 2px;
    padding-top: 16px;
}
.tc3-faq .tc3-faq-panel-inner p {
    margin: 0;
    font-size: .97rem;
    color: #5a6570;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
    .tc3-faq .tc3-faq-head { margin-bottom: 34px; }
    .tc3-faq .tc3-faq-list { max-width: 100%; gap: 12px; }
}

@media (max-width: 560px) {
    .tc3-faq .tc3-faq-toggle {
        gap: 12px;
        padding: 15px 16px;
        font-size: .96rem;
    }
    .tc3-faq .tc3-faq-mark { width: 28px; height: 28px; }
    .tc3-faq .tc3-faq-mark::before,
    .tc3-faq .tc3-faq-mark::after { width: 11px; }
    .tc3-faq .tc3-faq-panel-inner { padding: 14px 16px 18px; }
    .tc3-faq .tc3-faq-panel-inner p { font-size: .94rem; }
}

@media (prefers-reduced-motion: reduce) {
    .tc3-faq .tc3-faq-item,
    .tc3-faq .tc3-faq-toggle,
    .tc3-faq .tc3-faq-mark,
    .tc3-faq .tc3-faq-mark::before,
    .tc3-faq .tc3-faq-mark::after,
    .tc3-faq .tc3-faq-panel,
    .tc3-faq .tc3-faq-item.is-open > .tc3-faq-panel { transition: none; }
}

/* ---------- floating-buttons ---------- */
/* ============================================================
   BOTÕES FLUTUANTES: ajustes finos
   Raiz: .tc3-floating

   O visual base já vem pronto no main.css (posição fixa no canto
   inferior direito, tamanho dos botões, cor de cada rede, pulso do
   WhatsApp e a redução no celular). Aqui ficam apenas os ajustes
   que faltavam:
     1. área segura do iPhone (barra de gestos e telas com recorte);
     2. rótulo que aparece ao passar o mouse, no computador;
     3. foco visível para quem navega pelo teclado;
     4. telas muito pequenas e celular deitado;
     5. impressão.
   ============================================================ */

.tc3-floating {
    max-width: 100%;
    align-items: flex-end;
    /* Respeita a barra de gestos do iPhone e telas com recorte lateral.
       O 22px é o mesmo do main.css: aqui só entra a área segura por cima. */
    right: calc(22px + env(safe-area-inset-right, 0px));
    bottom: calc(22px + env(safe-area-inset-bottom, 0px));
}

.tc3-floating .tc3-float-btn {
    flex: 0 0 auto;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

/* O ícone nunca deve encolher dentro do círculo. */
.tc3-floating .tc3-float-btn svg {
    flex: 0 0 auto;
    pointer-events: none;
}

/* ---------- Rótulo ao passar o mouse (só no computador) ---------- */
.tc3-floating .tc3-float-label {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    transform: translateY(-50%) translateX(8px);
    padding: 7px 12px;
    border-radius: 8px;
    background: rgba(var(--tc3-dark-rgb), .92);
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.tc3-floating .tc3-float-btn:hover .tc3-float-label,
.tc3-floating .tc3-float-btn:focus-visible .tc3-float-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* ---------- Foco pelo teclado ---------- */
.tc3-floating .tc3-float-btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(var(--tc3-dark-rgb), .38), 0 6px 18px rgba(0, 0, 0, .26);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* Até 900px o main.css encosta os botões a 14px do canto. Como a regra base
   deste arquivo é mais nova que aquela e usa 22px, ela apagaria esse recuo do
   celular; então o 14px é repetido aqui, agora somando a área segura. */
@media (max-width: 900px) {
    .tc3-floating {
        right: calc(14px + env(safe-area-inset-right, 0px));
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    }
}

/* Sem mouse de verdade (celular e tablet) o rótulo não faz sentido. */
@media (max-width: 900px), (hover: none), (pointer: coarse) {
    .tc3-floating .tc3-float-label { display: none; }
}

/* Celular deitado: pouca altura, então os botões encolhem. */
@media (max-height: 460px) and (orientation: landscape) {
    .tc3-floating { gap: 8px; bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
    .tc3-floating .tc3-float-btn { width: 44px; height: 44px; }
    .tc3-floating .tc3-float-btn svg { width: 18px; height: 18px; }
}

/* Telas muito estreitas: encosta um pouco mais no canto. */
@media (max-width: 380px) {
    .tc3-floating {
        gap: 8px;
        right: calc(10px + env(safe-area-inset-right, 0px));
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }
    .tc3-floating .tc3-float-btn { width: 44px; height: 44px; }
    .tc3-floating .tc3-float-btn svg { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .tc3-floating .tc3-float-label { transition: none; }
}

@media print {
    .tc3-floating { display: none !important; }
}
