/* ============================================================
   Kamisarte.com.br — Estilos Principais
   Paleta: Vermelho #cc0000 | Preto #1a1a1a | Branco | Laranja #e87d00
   Mobile-first
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --red: #cc0000;
    --red-dark: #aa0000;
    --red-light: #ffe5e5;
    --black: #1a1a1a;
    --gray-900: #222;
    --gray-800: #333;
    --gray-700: #555;
    --gray-500: #888;
    --gray-300: #d1d1d1;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --accent: #e87d00;
    --accent-light: #fff3e0;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --header-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--primary {
    background: var(--red);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}
.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    gap: 10px;
}
.btn--whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
}
.btn--outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}
.btn--outline:hover {
    background: var(--white);
    color: var(--black);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}
.header--scrolled {
    background: rgba(26,26,26,0.98);
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}
.header__logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}
.header__logo:hover { text-decoration: none; }
.header__logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}
.header__logo-sub {
    font-size: 10px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header__menu {
    display: flex;
    gap: 24px;
}
.header__link {
    color: var(--gray-300);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}
.header__link:hover {
    color: var(--white);
    text-decoration: none;
}
.header__cta {
    padding: 10px 20px;
    font-size: 14px;
}
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}
.header__nav-close {
    display: none;
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}
.header__cart { color: var(--white); text-decoration: none; display: flex; align-items: center; }
.header__cart:hover { opacity: 0.8; text-decoration: none; }
.cart-badge {
    position: absolute;
    top: -6px; right: -8px;
    background: var(--red);
    color: var(--white);
    font-size: 10px; font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}

/* Carrinho e Frete */
.frete-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.15s;
    background: var(--white);
}
.frete-option:hover { border-color: var(--red); background: var(--red-light); }
.frete-option:has(input:checked) { border-color: var(--red); background: var(--red-light); }
.frete-option input[type="radio"] { accent-color: var(--red); width: 18px; height: 18px; cursor: pointer; }
.frete-option > div:first-of-type { flex: 1; }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 50%, #1a1a1a 100%);
    background-size: 400% 400%;
    animation: heroGradient 15s ease infinite;
    overflow: hidden;
}
@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(204,0,0,0.15) 0%, transparent 60%);
}
.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 20px 80px;
}
.hero__title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}
.hero__highlight {
    color: var(--red);
}
.hero__subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--gray-300);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.hero__scroll:hover { opacity: 1; text-decoration: none; }
.hero__scroll-text {
    color: var(--gray-300);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero__scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-300);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.hero__scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-300);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}
.section--dark {
    background: var(--gray-100);
}
.section__header {
    text-align: center;
    margin-bottom: 48px;
}
.section__badge {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section__title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -1px;
}

/* --- Sobre --- */
.sobre__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.sobre__texto p {
    color: var(--gray-700);
    margin-bottom: 16px;
    font-size: 16px;
}
.sobre__destaques {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.sobre__card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}
.sobre__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--red);
}
.sobre__card-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}
.sobre__card-label {
    font-size: 14px;
    color: var(--gray-700);
}

/* --- Técnicas --- */
.tecnicas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.tecnica-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
}
.tecnica-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--red);
}
.tecnica-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
}
.tecnica-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}
.tecnica-card__desc {
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.tecnica-card__info {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tecnica-card__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tecnica-card__item strong {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tecnica-card__item span {
    font-size: 14px;
    color: var(--black);
}

/* --- Comparativo --- */
.tecnicas__comparativo {
    max-width: 700px;
    margin: 0 auto;
}
.tecnicas__comparativo-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--black);
}
.tecnicas__tabela-wrapper {
    overflow-x: auto;
}
.tecnicas__tabela {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.tecnicas__tabela th,
.tecnicas__tabela td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}
.tecnicas__tabela th {
    background: var(--black);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
}
.tecnicas__tabela td:first-child {
    font-weight: 600;
    text-align: left;
    color: var(--black);
}
.tecnicas__tabela .check { color: #16a34a; font-weight: 700; }
.tecnicas__tabela .cross { color: var(--gray-500); }

/* --- Produtos --- */
.produtos__filtros {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
    align-items: center;
}
.filtro-chip {
    padding: 7px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    color: var(--gray-700);
    font-family: inherit;
    transition: all 0.2s;
}
.filtro-chip:hover {
    border-color: var(--red);
    color: var(--red);
}
.filtro-chip--active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.filtro-chip--active:hover {
    background: var(--red-dark);
    color: var(--white);
}
.filtro__separator {
    width: 1px;
    height: 20px;
    background: var(--gray-200);
    margin: 0 4px;
}
.produtos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.produto-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}
.produto-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.produto-card--hidden {
    display: none;
}
.produto-card__img {
    aspect-ratio: 1;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.produto-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Placeholder por técnica */
.produto-card__img--placeholder {
    position: relative;
    overflow: hidden;
}
.produto-card__img--plotter {
    background: linear-gradient(135deg, #ffe5e5 0%, #ffcccc 50%, #ffb3b3 100%);
}
.produto-card__img--sublimacao {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
}
.produto-card__img--dtf {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 50%, #86efac 100%);
}
.produto-card__placeholder-icon {
    font-size: 48px;
    opacity: 0.6;
}
.produto-card__body {
    padding: 20px;
}
.produto-card__tags {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}
.produto-card__tecnica {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
    font-weight: 600;
}
.produto-card__title {
    font-size: 16px;
    font-weight: 600;
    margin: 4px 0;
    color: var(--black);
}
.produto-card__meta {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 8px;
}
.produto-card__desc {
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.5;
}
.produto-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.produto-card__preco {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}
.produto-card__cta {
    display: inline-block;
    padding: 8px 16px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}
.produto-card__cta:hover {
    background: var(--red-dark);
    text-decoration: none;
}

/* Produtos vazio / sem resultados */
.produtos__vazio {
    text-align: center;
    padding: 64px 20px;
    color: var(--gray-500);
}
.produtos__vazio-icone {
    font-size: 48px;
    margin-bottom: 16px;
}
.produtos__vazio-sub {
    font-size: 13px;
    margin-top: 4px;
}
.produtos__sem-resultados {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-500);
}
.produtos__sem-resultados p {
    margin-bottom: 12px;
    font-size: 14px;
}

/* --- Galeria --- */
.galeria__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.galeria__item--large {
    grid-column: span 2;
    grid-row: span 2;
}
.galeria__placeholder {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    gap: 8px;
    transition: all 0.3s;
}
.galeria__placeholder:hover {
    border-color: var(--red);
    color: var(--red);
}
.galeria__placeholder span { font-size: 36px; }
.galeria__placeholder p { font-size: 12px; }
.galeria__aviso {
    text-align: center;
    margin-top: 24px;
    color: var(--gray-500);
    font-size: 13px;
}

.galeria__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(0,0,0,0.06);
    min-height: 220px;
}
.galeria__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.galeria__item:hover img { transform: scale(1.06); }
.galeria__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
    padding: 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.78), transparent 55%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}
.galeria__item:hover .galeria__overlay { opacity: 1; }
.galeria__overlay strong { font-size: 15px; }
.galeria__overlay span { font-size: 12px; color: rgba(255,255,255,0.85); }
.galeria__zoom {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 52px; height: 52px;
    background: rgba(204,0,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2;
}
.galeria__item:hover .galeria__zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* --- Depoimentos --- */
.depoimentos {
    background: linear-gradient(180deg, #f5f5f5 0%, #ececec 100%);
    position: relative;
    overflow: hidden;
}
.depoimentos__decor {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--accent) 50%, var(--red) 100%);
}
.section__subtitle {
    color: var(--gray-500);
    font-size: 16px;
    margin-top: 12px;
}
.depoimentos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* --- Estrelas (SVG) --- */
.estrela {
    width: 16px;
    height: 16px;
    display: block;
    flex: 0 0 auto;
    color: var(--gray-300);
}
.estrela--on { color: #f59e0b; }
.estrela--off { color: var(--gray-300); }
.estrelas {
    position: relative;
    display: inline-flex;
    line-height: 0;
}
.estrelas__base,
.estrelas__fill {
    display: inline-flex;
}
.estrelas__base .estrela { color: var(--gray-300); }
.estrelas__fill {
    position: absolute;
    top: 0; left: 0;
    overflow: hidden;
    white-space: nowrap;
}
.estrelas__fill .estrela { color: #f59e0b; }

/* --- Resumo de avaliações --- */
.depoimentos__resumo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: -28px auto 44px;
    padding: 16px 32px;
    width: max-content;
    max-width: 100%;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}
.depoimentos__resumo-media {
    font-size: 34px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.5px;
}
.depoimentos__resumo-detalhe {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.depoimentos__resumo-stars .estrela {
    width: 16px;
    height: 16px;
}
.depoimentos__resumo-count {
    color: var(--gray-500);
    font-size: 13px;
}

/* --- Cards --- */
.depoimento-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    overflow: hidden;
}
.depoimento-card__quote-icon {
    position: absolute;
    top: 16px;
    right: 18px;
    color: var(--gray-200);
    line-height: 0;
    pointer-events: none;
    transition: color 0.3s;
}
.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    border-color: var(--gray-300);
}
.depoimento-card:hover .depoimento-card__quote-icon {
    color: rgba(204,0,0,0.15);
}
.depoimento-card__topo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
}
.depoimento-card__autor {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.depoimento-card__foto,
.depoimento-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex: 0 0 auto;
    border: 2px solid var(--gray-200);
    transition: border-color 0.3s;
}
.depoimento-card:hover .depoimento-card__foto,
.depoimento-card:hover .depoimento-card__avatar {
    border-color: var(--accent);
}
.depoimento-card__foto { object-fit: cover; }
.depoimento-card__avatar {
    background: linear-gradient(135deg, var(--red-light), var(--accent-light));
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.depoimento-card__ident {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.depoimento-card__ident strong {
    color: var(--black);
    font-size: 15px;
    line-height: 1.3;
}
.depoimento-card__cargo {
    color: var(--gray-500);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.depoimento-card__stars {
    display: inline-flex;
    gap: 1px;
    margin-top: 6px;
}
.depoimento-card__stars .estrela {
    width: 14px;
    height: 14px;
}
.depoimento-card__texto {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.75;
    flex: 1;
    position: relative;
    z-index: 1;
}
.depoimento-card__rodape {
    display: flex;
    align-items: center;
    padding-top: 14px;
    margin-top: auto;
    border-top: 1px solid var(--gray-200);
}
.depoimento-card__verificado {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-500);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.depoimento-card__verificado svg { color: var(--accent); flex: 0 0 auto; }

/* Featured card — primeiro depoimento em destaque */
.depoimento-card--featured {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--black) 0%, #2d1a1a 100%);
    color: #fff;
    padding: 36px 32px 28px;
    justify-content: center;
    border-color: transparent;
}
.depoimento-card--featured::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,0,0,0.22), transparent 70%);
    pointer-events: none;
}
.depoimento-card--featured .depoimento-card__quote-icon {
    color: rgba(255,255,255,0.10);
}
.depoimento-card--featured:hover .depoimento-card__quote-icon {
    color: rgba(245,158,11,0.30);
}
.depoimento-card--featured .depoimento-card__texto {
    color: rgba(255,255,255,0.92);
    font-size: 17px;
    line-height: 1.85;
}
.depoimento-card--featured .depoimento-card__rodape {
    border-top-color: rgba(255,255,255,0.12);
}
.depoimento-card--featured .depoimento-card__ident strong { color: #fff; }
.depoimento-card--featured .depoimento-card__cargo { color: rgba(255,255,255,0.6); }
.depoimento-card--featured .depoimento-card__verificado { color: rgba(255,255,255,0.55); }
.depoimento-card--featured .depoimento-card__foto,
.depoimento-card--featured .depoimento-card__avatar {
    width: 44px;
    height: 44px;
    border-color: var(--red);
    font-size: 15px;
}
.depoimento-card--featured .depoimento-card__avatar {
    background: rgba(204,0,0,0.25);
    color: #fff;
}
.depoimento-card--featured:hover .depoimento-card__foto,
.depoimento-card--featured:hover .depoimento-card__avatar {
    border-color: var(--accent);
}

/* --- Contato --- */
.contato__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contato__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contato__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contato__item-icon {
    width: 44px;
    height: 44px;
    background: var(--red-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}
.contato__item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}
.contato__item p {
    color: var(--gray-700);
    font-size: 14px;
}
.contato__item a {
    color: var(--red);
    font-weight: 500;
}
.contato__mapa {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 300px;
    background: var(--gray-200);
}

/* --- Footer --- */
.footer {
    background: var(--black);
    color: var(--gray-300);
    padding: 64px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer__logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}
.footer__brand p {
    font-size: 14px;
    line-height: 1.6;
}
.footer__links h4,
.footer__info h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
    color: var(--gray-500);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); text-decoration: none; }
.footer__info p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom p { font-size: 13px; color: var(--gray-500); }
.footer__privacy { font-size: 13px; color: var(--gray-500); }

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 900;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    text-decoration: none;
    animation: none;
}
@keyframes pulse {
    0% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
}

/* --- Cookie Banner (LGPD) --- */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--black);
    color: var(--white);
    z-index: 1100;
    padding: 16px 0;
    font-size: 14px;
    transform: translateY(100%);
    transition: transform 0.4s;
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner__inner p { flex: 1; min-width: 200px; }
.cookie-banner__inner a { color: var(--red); font-weight: 500; }

/* ============================================================
   COMPONENTES COMPARTILHADOS (Badges, Alertas, Tabelas, etc.)
   ============================================================ */

/* --- Badges --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.badge--success { background: #dcfce7; color: #16a34a; }
.badge--warning { background: #fef3c7; color: #d97706; }
.badge--danger  { background: #fee2e2; color: #dc2626; }
.badge--info    { background: #dbeafe; color: #2563eb; }
.badge--muted   { background: var(--gray-100); color: var(--gray-700); }
.badge--accent  { background: var(--accent-light); color: var(--accent); }

/* --- Alert Boxes --- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid transparent;
    line-height: 1.5;
}
.alert__icon { flex-shrink: 0; margin-top: 1px; }
.alert--success { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.alert--warning { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.alert--danger  { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.alert--info    { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }

/* --- Button Variants --- */
.btn--sm { padding: 7px 14px; font-size: 13px; }
.btn--success { background: #16a34a; color: var(--white); }
.btn--success:hover { background: #15803d; }
.btn--danger { background: #dc2626; color: var(--white); }
.btn--danger:hover { background: #b91c1c; }
.btn--outline-dark {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}
.btn--outline-dark:hover {
    background: var(--gray-100);
    border-color: var(--gray-500);
}
.btn:disabled, .btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* --- Progress Bar --- */
.progress {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 9999px;
    overflow: hidden;
}
.progress__bar {
    height: 100%;
    border-radius: 9999px;
    background: var(--red);
    transition: width 0.5s ease;
}
.progress__bar--success { background: #16a34a; }
.progress__bar--warning { background: #d97706; }

/* --- Skeleton / Shimmer --- */
.skeleton {
    background: var(--gray-200);
    border-radius: 4px;
    animation: skeletonPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes skeletonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.shimmer {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmerSlide 2s infinite;
}
@keyframes shimmerSlide {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- Spinner --- */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--gray-300);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spinnerSpin 0.6s linear infinite;
}
@keyframes spinnerSpin {
    to { transform: rotate(360deg); }
}

/* --- Breadcrumb --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb__item {
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
}
.breadcrumb__item:not(:last-child)::after {
    content: '/';
    color: var(--gray-300);
    font-size: 11px;
}
.breadcrumb__item--active { color: var(--black); font-weight: 500; }
.breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
}
.breadcrumb a:hover { color: var(--red); }

/* --- Pagination --- */
.pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
}
.pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 13px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background: var(--white);
    color: var(--gray-700);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}
.pagination__btn:hover { background: var(--gray-100); border-color: var(--gray-300); }
.pagination__btn--active { background: var(--red); color: var(--white); border-color: var(--red); }
.pagination__btn--active:hover { background: var(--red-dark); }
.pagination__btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* --- Modal (vanilla CSS/JS) --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    padding: 20px;
}
.modal-overlay--open { opacity: 1; visibility: visible; }
.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(12px);
    transition: transform 0.2s;
}
.modal-overlay--open .modal { transform: translateY(0); }
.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 8px;
}
.modal__title { font-size: 18px; font-weight: 600; }
.modal__close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--gray-500);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}
.modal__close:hover { color: var(--black); }
.modal__body { padding: 8px 20px 16px; font-size: 14px; color: var(--gray-700); }
.modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 20px 20px;
}

/* --- Toast --- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.toast {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
    animation: toastIn 0.3s ease, toastOut 0.3s ease 3.7s forwards;
    max-width: 380px;
}
.toast--success { background: #16a34a; color: #fff; }
.toast--error   { background: #dc2626; color: #fff; }
.toast--warning { background: #d97706; color: #fff; }
.toast--info    { background: #2563eb; color: #fff; }
@keyframes toastIn  { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(40px); } }

/* --- Dropdown --- */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown__menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 180px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.15s;
}
.dropdown__menu--open { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__item {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--gray-700);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.1s;
}
.dropdown__item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.dropdown__item:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.dropdown__item:hover { background: var(--gray-100); text-decoration: none; }
.dropdown__divider { height: 1px; background: var(--gray-200); margin: 4px 0; }

/* --- Form Validation --- */
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--black);
}
.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-control:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(204,0,0,0.1);
}
.form-control.is-valid { border-color: #16a34a; }
.form-control.is-valid:focus { box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }
.form-control.is-invalid { border-color: #dc2626; }
.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }
.form-text {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}
.valid-feedback { font-size: 12px; color: #16a34a; margin-top: 4px; display: none; }
.is-valid ~ .valid-feedback { display: block; }
.invalid-feedback { font-size: 12px; color: #dc2626; margin-top: 4px; display: none; }
.is-invalid ~ .invalid-feedback { display: block; }

/* --- Table --- */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.table th {
    text-align: left;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}
.table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}
.table tbody tr:hover { background: var(--gray-100); }
.table tbody tr:last-child td { border-bottom: none; }

/* ============================================================
   CHAT MODAL (Pré-atendimento)
   ============================================================ */
.chat-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}
.chat-overlay--open {
    opacity: 1;
    visibility: visible;
}
.chat-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 380px;
    height: 560px;
    max-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.25s;
}
.chat-overlay--open .chat-modal {
    transform: translateY(0);
}
.chat-modal__header {
    background: var(--red);
    color: var(--white);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.chat-modal__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.chat-modal__avatar {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}
.chat-modal__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}
.chat-modal__subtitle {
    font-size: 11px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 4px;
}
.chat-modal__subtitle::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
}
.chat-modal__close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    opacity: 0.8;
}
.chat-modal__close:hover { opacity: 1; }
.chat-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--gray-100);
}
.chat-modal__footer {
    padding: 12px 16px;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
    flex-shrink: 0;
}

/* Chat bubbles */
.chat__msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    animation: msgIn 0.3s ease;
}
@keyframes msgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat__msg--bot {
    align-self: flex-start;
    background: var(--white);
    color: var(--black);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.chat__msg--user {
    align-self: flex-end;
    background: var(--red);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

/* Typing indicator */
.chat__typing {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.chat__typing span {
    width: 7px;
    height: 7px;
    background: var(--gray-300);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}
.chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.chat__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* Chat input */
.chat__input-area {
    display: flex;
    gap: 8px;
}
.chat__input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
}
.chat__input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(204,0,0,0.08);
}
.chat__send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s;
}
.chat__send-btn:hover { background: var(--red-dark); }
.chat__send-btn:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
}

/* Chat buttons (quick reply) */
.chat__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.chat__quick-btn {
    padding: 8px 16px;
    border: 1px solid var(--red);
    color: var(--red);
    background: var(--white);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    white-space: nowrap;
}
.chat__quick-btn:hover {
    background: var(--red);
    color: var(--white);
}
.chat__quick-btn--selected {
    background: var(--red);
    color: var(--white);
}

/* Resumo final */
.chat__resumo {
    text-align: center;
}
.chat__resumo-content {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 16px;
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 12px;
    text-align: left;
    line-height: 1.6;
}
.chat__resumo-content strong {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.chat__resumo-content span {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
}
.chat__wa-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
}

/* Mobile chat fullscreen */
@media (max-width: 480px) {
    .chat-overlay {
        padding: 0;
        align-items: flex-end;
    }
    .chat-modal {
        max-width: 100%;
        width: 100%;
        height: 90vh;
        max-height: 90vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .sobre__grid { grid-template-columns: 1fr; gap: 32px; }
    .contato__grid { grid-template-columns: 1fr; }
    .depoimentos__grid { grid-template-columns: 1fr 1fr; }
    .depoimento-card--featured { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    /* Header mobile */
    .header__nav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.3s;
        z-index: 1100;
    }
    .header__nav--open { right: 0; }
    .header__nav-close { display: block; }
    .header__menu {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .header__link { font-size: 18px; }
    .header__hamburger { display: flex; }
    .header__cta { display: none; }

    /* Hero */
    .hero__content { padding: 100px 20px 60px; }

    /* Sections */
    .section { padding: 56px 0; }

    /* Sobre */
    .sobre__destaques { grid-template-columns: 1fr 1fr; }
    .sobre__card { padding: 24px 16px; }

    /* Técnicas */
    .tecnicas__grid { grid-template-columns: 1fr; }

    /* Produtos */
    .produtos__grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

    /* Galeria */
    .galeria__grid { grid-template-columns: repeat(2, 1fr); }
    .galeria__item--large { grid-column: span 2; grid-row: span 1; }

    /* Depoimentos */
    .depoimentos__grid { grid-template-columns: 1fr 1fr; }
    .depoimento-card--featured { grid-column: span 2; grid-row: span 1; }
    /* Footer */
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }

    /* WhatsApp float */
    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
    .whatsapp-float__icon { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; max-width: 280px; }
    .hero__scroll { margin-top: 32px; }
    .produtos__grid { grid-template-columns: 1fr; }
    .galeria__grid { grid-template-columns: 1fr; }
    .galeria__item--large { grid-column: span 1; grid-row: span 1; }
    .sobre__destaques { grid-template-columns: 1fr; }
    .depoimentos__grid { grid-template-columns: 1fr; }
    .depoimento-card--featured { grid-column: span 1; }
    .depoimentos__resumo { flex-direction: column; gap: 8px; padding: 20px 24px; text-align: center; }
    .depoimentos__resumo-detalhe { align-items: center; }
    .depoimento-card--featured .depoimento-card__texto { font-size: 16px; }
    .depoimento-card__foto,
    .depoimento-card__avatar { width: 36px; height: 36px; font-size: 13px; }
    .depoimento-card--featured .depoimento-card__foto,
    .depoimento-card--featured .depoimento-card__avatar { width: 40px; height: 40px; font-size: 14px; }
    .cookie-banner__inner { flex-direction: column; text-align: center; }
}
