:root {
    --bg: #0b0b0b;
    --bg2: #0f0f0f;
    --grid: rgba(255, 255, 255, .06);
    --text: rgba(255, 255, 255, .88);
    --muted: rgba(255, 255, 255, .58);

    /* ✅ PALETA SÓ VERMELHO (mecânica) */
    --red: #E11D2E;
    --red2: #B0121E;
    --redRGB: 225, 29, 46;
    --red2RGB: 176, 18, 30;

    --white: #ffffff;
    --headerH: 84px;
    --wrapW: 1200px;

    --light: #efefef;
    --lightText: #2a2a2a;
    --lightMuted: #6f6f6f;

    --gold: var(--red);
    --wpp: #25D366;
}


html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background:
        radial-gradient(1200px 600px at 65% 10%, rgba(255, 255, 255, .06), transparent 60%),
        radial-gradient(900px 420px at 85% 20%, rgba(var(--redRGB), .16), transparent 60%),
        radial-gradient(800px 400px at 10% 50%, rgba(255, 255, 255, .05), transparent 60%),
        linear-gradient(180deg, var(--bg2), var(--bg));
    color: var(--text);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: -40px;
    pointer-events: none;
    background:
        repeating-linear-gradient(0deg, var(--grid) 0 1px, transparent 1px 38px),
        repeating-linear-gradient(90deg, var(--grid) 0 1px, transparent 1px 38px);
    opacity: .32;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 30% 20%, rgba(var(--redRGB), .10), transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(var(--redRGB), .08), transparent 60%);
    opacity: .55;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(var(--wrapW), calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    height: var(--headerH);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgb(20, 20, 20), rgb(15, 15, 15));
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-row {
    height: var(--headerH);
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
}

.brand img {
    width:40px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .35));
}

.brand .fallback {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: .06em;
}

.brand .mark {
    width: 18px;
    height: 18px;
    background: var(--red);
    clip-path: polygon(0 0, 100% 0, 64% 100%, 0 100%);
    transform: skewX(-12deg);
    box-shadow: 0 10px 20px rgba(var(--redRGB), .22);
}

.nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.nav a {
    font-size: 12px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    padding: 10px 6px;
    position: relative;
    transition: color .2s ease;
    white-space: nowrap;
}

.nav a:hover {
    color: rgba(255, 255, 255, .92)
}

.nav a::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--redRGB), .95), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
    opacity: .9;
}

.nav a:hover::after {
    transform: scaleX(1)
}

.cta {
    display: flex;
    justify-content: flex-end;
    min-width: 220px
}

.btn-contact {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px;
    padding: 0 20px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(180deg, var(--red), var(--red2));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .35), 0 10px 25px rgba(var(--redRGB), .18);
    cursor: pointer;
    user-select: none;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}

.btn-contact:active {
    transform: translateY(1px)
}

.btn-contact .dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: #fff;
    opacity: .95
}

/* mobile */
.hamb {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .20);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.hamb span {
    width: 18px;
    height: 2px;
    background: #fff;
    opacity: .85;
    display: block;
    position: relative
}

.hamb span::before,
.hamb span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #fff;
    opacity: .85
}

.hamb span::before {
    top: -6px
}

.hamb span::after {
    top: 6px
}

.mobile-drawer {
    position: fixed;
    top: var(--headerH);
    right: 0;
    width: min(360px, 92vw);
    height: calc(100% - var(--headerH));
    background: rgba(10, 10, 10, .96);
    border-left: 1px solid rgba(255, 255, 255, .10);
    transform: translateX(110%);
    transition: transform .22s ease;
    z-index: 60;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-drawer.open {
    transform: translateX(0)
}

.mobile-drawer a {
    padding: 14px 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    color: rgba(255, 255, 255, .86);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    font-size: 12px;
    background: rgba(255, 255, 255, .03);
}

/* HERO */
.hero-frame {
    position: relative;
    width: 100%;
    max-width: none;
    background: #0a0a0a;
    overflow: hidden;
    border: 0;
    box-shadow: none;
}


/* HERO: alturas certinhas */
.hero .swiper{
  width: 100%;
}

/* Tablet */
@media (max-width: 980px){
  .hero .swiper{ height: 700px; } /* 760x700 */
}

/* Celular */
@media (max-width: 520px){
  .hero .swiper{ height: 530px; } /* 360x530 */
}

/* Picture preenchendo 100% */
.hero .swiper-slide .slide-picture{
  width: 100%;
  height: 100%;
  display: block;
}

.hero .swiper-slide .slide-picture img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000
}

.slide-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    filter: contrast(1.05) saturate(1.05);
}


.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    user-select: none;
}

.hero-nav:hover {
    border-color: rgba(255, 255, 255, .30);
    transform: translateY(-50%) scale(1.03);
}

.hero-prev {
    left: 14px
}

.hero-next {
    right: 14px
}

.chev {
    width: 10px;
    height: 10px;
    border-right: 3px solid rgba(255, 255, 255, .9);
    border-bottom: 3px solid rgba(255, 255, 255, .9);
    transform: rotate(135deg);
    opacity: .95;
}

.hero-next .chev {
    transform: rotate(-45deg)
}

.hero-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    z-index: 12;
    gap: 8px;
    pointer-events: none;
}

.swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: rgba(var(--redRGB), .22);
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .35);
}

.swiper-pagination-bullet-active {
    background: rgba(var(--redRGB), .92);
    border-color: rgba(255, 255, 255, .22);
}

/* ========= QUEM SOMOS ========= */
.about {
    position: relative;
    background: var(--light);
    color: #2a2a2a;
    padding: 56px 0 66px;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(0, 0, 0, .08) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: .55;
    pointer-events: none;
}

.about::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .00) 55%),
        radial-gradient(900px 520px at 15% 55%, rgba(0, 0, 0, .05), transparent 65%);
    pointer-events: none;
    opacity: 1;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
    position: relative;
}

.about-grid::before {
    content: "";
    position: absolute;
    top: -18px;
    bottom: -18px;
    left: 50%;
    width: 2px;
    background: rgba(0, 0, 0, .12);
    transform: translateX(-50%);
}

.about-left {
    padding-left: 10px;
    max-width: 560px
}

.downbox {
    width: 54px;
    height: 54px;
    border: 2px solid var(--red);
    background: rgba(var(--redRGB), .10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 26px 0;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

.downbox span {
    color: var(--red);
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    transform: translateY(-1px)
}

.about-kicker {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    font-size: 14px;
    color: #2f2f2f;
    margin: 0 0 10px 0;
}

.about-title {
    margin: 0 0 18px 0;
    font-family: Teko, Montserrat, sans-serif;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: .95;
    font-size: 60px;
    color: var(--red);
    text-transform: uppercase;
}

.about-copy {
    color: var(--lightMuted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 16px 0;
    max-width: 470px;
}

.about-copy strong {
    color: #2f2f2f;
    font-weight: 800
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 26px;
    background: linear-gradient(180deg, var(--red), var(--red2));
    color: #fff;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
    border: 0;
    cursor: pointer;
    margin-top: 14px;
    clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
    box-shadow: 0 16px 26px rgba(0, 0, 0, .18);
}

.about-btn:active {
    transform: translateY(1px)
}

.about-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px
}

.tilt-wrap {
    width: min(460px, 100%);
    aspect-ratio: 3 / 4;
    position: relative;
    transform: perspective(900px) rotateY(-10deg) rotateX(1deg) rotateZ(-1deg);
    transform-origin: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
    background: #ddd;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .10);
}

.tilt-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.02) saturate(1.03)
}

.tilt-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .10) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .10) 0 1px, transparent 1px 44px);
    opacity: .18;
    pointer-events: none;
    z-index: 2;
}

.badge-anos {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(0, 0, 0, .00), rgba(0, 0, 0, .65) 35%, rgba(0, 0, 0, .78));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.anos-inner {
    text-align: center;
    transform: translateY(6px)
}

.anos-num {
    font-family: Teko, sans-serif;
    font-size: 86px;
    line-height: .85;
    color: var(--red);
    letter-spacing: .04em;
    font-weight: 700;
}

.anos-lab {
    font-family: Teko, sans-serif;
    font-size: 22px;
    color: var(--red2);
    letter-spacing: .18em;
    margin-top: -6px;
    text-transform: uppercase;
}

/* ========= SERVIÇOS (VÍDEO) ========= */
.services {
    position: relative;
    padding: 86px 0;
    overflow: hidden;
    background:
        radial-gradient(1100px 520px at 50% 18%, rgba(255, 255, 255, .10), transparent 55%),
        radial-gradient(1200px 700px at 50% 70%, rgba(0, 0, 0, .40), rgba(0, 0, 0, .78)),
        linear-gradient(180deg, #1a1a1a 0%, #0b0b0b 65%, #0a0a0a 100%);
}

.services::before {
    content: "";
    position: absolute;
    inset: -40px;
    pointer-events: none;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 86px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 86px);
    opacity: .38;
    z-index: 1;
}

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

.svc-head {
    text-align: center;
    margin-bottom: 26px
}

.svc-kicker {
    margin: 0 0 6px 0;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .68);
    font-weight: 800;
}

.svc-title {
    margin: 0;
    font-family: Teko, Montserrat, sans-serif;
    font-size: 44px;
    line-height: .92;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    text-shadow: 0 18px 35px rgba(0, 0, 0, .40);
}

.svc-video-wrap {
    width: min(980px, 100%);
    margin: 0 auto;
    position: relative;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .55);
    overflow: hidden;
}

.svc-video-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 420px at 30% 10%, rgba(var(--redRGB), .12), transparent 60%);
    opacity: .9;
    z-index: 0;
}

.svc-video-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 0;
}

.svc-video {
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    min-height: 360px;
    display: block;
    width: 100%;
    overflow: hidden;
    clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
    border-right: 1px solid rgba(255, 255, 255, .10);
}

.svc-video-thumb {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    filter: contrast(1.05) saturate(1.05);
}

.svc-play {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .45);
    border: 2px solid rgba(var(--redRGB), .70);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .55), 0 16px 34px rgba(var(--redRGB), .10);
    color: #fff;
    z-index: 2;
    transition: transform .18s ease, filter .18s ease, background .18s ease;
}

.svc-play i {
    font-size: 18px;
    transform: translateX(1px)
}

.svc-video:hover .svc-play {
    transform: scale(1.04);
    filter: brightness(1.04) saturate(1.05);
    background: rgba(0, 0, 0, .55);
}

.svc-video-caption {
    position: absolute;
    left: 100px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.svc-video-caption .cap-k {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(255, 255, 255, .76);
}

.svc-video-caption .cap-t {
    font-family: Teko, Montserrat, sans-serif;
    font-size: 26px;
    line-height: .95;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 18px 35px rgba(0, 0, 0, .55);
}

.svc-side {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, rgba(18, 18, 18, .86), rgba(10, 10, 10, .86));
    position: relative;
}

.svc-side::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(var(--redRGB), .95);
    opacity: .9;
}

.svc-side-kicker {
    margin: 0;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .70);
    font-weight: 900;
}

.svc-side-title {
    margin: 0;
    font-family: Teko, Montserrat, sans-serif;
    font-size: 30px;
    line-height: .95;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
}

.svc-side-sub {
    margin: 2px 0 0 0;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .64);
    max-width: 360px;
}

.svc-list {
    list-style: none;
    margin: 8px 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.55;
}

.svc-list i {
    margin-top: 2px;
    color: rgba(var(--redRGB), .95);
    filter: drop-shadow(0 10px 18px rgba(var(--redRGB), .12));
}

.svc-side-cta {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px;
    padding: 0 20px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(180deg, var(--red), var(--red2));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 16px 26px rgba(0, 0, 0, .22);
    cursor: pointer;
    user-select: none;
    clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
    align-self: flex-start;
}

.svc-side-cta .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    opacity: .95
}

.svc-side-cta:active {
    transform: translateY(1px)
}

/* linha + botão descer */
.svc-bottom-line {
    position: relative;
    margin: 60px auto 0;
    height: 2px;
    background: rgba(var(--redRGB), .95);
    opacity: .85;
    z-index: 2;
    pointer-events: none;
}

.svc-down {
    position: relative;
    width: 54px;
    height: 54px;
    border: 2px solid rgba(var(--redRGB), .95);
    background: linear-gradient(180deg, rgba(18, 18, 18, 1), rgba(0, 0, 0, 1));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
    cursor: pointer;
    user-select: none;
    margin: -28px auto 0;
    z-index: 3;
}

.svc-down span {
    color: var(--red);
    font-size: 26px;
    font-weight: 900;
    transform: translateY(-1px);
}

.svc-down:active {
    transform: translateY(1px)
}

/* modal vídeo */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none
}

.video-modal.open {
    display: block
}

.video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(6px)
}

.video-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(980px, 92vw);
    background: rgba(12, 12, 12, .95);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .75);
    border-radius: 16px;
    overflow: hidden;
}

.video-dialog::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(var(--redRGB), .95), transparent);
    opacity: .95;
    pointer-events: none;
    z-index: 2;
}

.video-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .35);
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.video-close:hover {
    background: rgba(0, 0, 0, .55)
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000
}

/* ========= ESPECIALIDADES ========= */
.specialties {
    position: relative;
    padding: 86px 0 96px;
    overflow: hidden;
    background: radial-gradient(1000px 520px at 50% 18%, rgb(255 255 255 / 0%), transparent 58%), linear-gradient(180deg, #0a0a0a 0%, #0b0b0b 55%, #180d0d 100%);
}

.specialties::before {
    content: "";
    position: absolute;
    inset: -40px;
    pointer-events: none;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 86px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 86px);
    opacity: .34;
    z-index: 1;
}

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

.spec-head {
    width: min(980px, 100%);
    margin: 0 auto 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.spec-left {
    max-width: 680px
}

.spec-kicker {
    margin: 0 0 8px 0;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .68);
    font-weight: 800;
}

.spec-title {
    margin: 0;
    font-family: Teko, Montserrat, sans-serif;
    font-size: 44px;
    line-height: .92;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    text-shadow: 0 18px 35px rgba(0, 0, 0, .40);
}

.spec-sub {
    margin: 10px 0 0 0;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .66);
    max-width: 640px;
}

.spec-grid-wrap {
    width: min(980px, 100%);
    margin: 0 auto;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .55);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.spec-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            transparent 0 calc(33.333% - .5px),
            rgba(255, 255, 255, .12) calc(33.333% - .5px) calc(33.333% + .5px),
            transparent calc(33.333% + .5px) calc(66.666% - .5px),
            rgba(255, 255, 255, .12) calc(66.666% - .5px) calc(66.666% + .5px),
            transparent calc(66.666% + .5px));
    z-index: 3;
}

.spec-card {
    position: relative;
    min-height: 310px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(18, 18, 18, .88), rgba(10, 10, 10, .90));
    z-index: 2;
    overflow: hidden;
    outline: none;
    cursor: default;
}

.spec-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(640px 240px at 50% 0%, rgba(255, 255, 255, .08), transparent 62%);
    opacity: .75;
    pointer-events: none;
    z-index: 0;
}

.spec-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(var(--redRGB), .95);
    opacity: .9;
    z-index: 1;
}

.spec-media {
    position: relative;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .30);
    overflow: hidden;
    clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
    z-index: 2;
}

.spec-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(1.04);
    transform: scale(1.02);
}

.spec-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(420px 180px at 70% 30%, rgba(var(--redRGB), .16), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .55));
    pointer-events: none;
}

.spec-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    position: relative;
    z-index: 2;
}

.spec-ico {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .45);
    border: 2px solid rgba(var(--redRGB), .45);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 26px rgba(0, 0, 0, .45);
    flex: 0 0 auto;
}

.spec-ico svg {
    width: 20px;
    height: 20px;
    fill: var(--red);
    opacity: .95
}

.spec-h3 {
    margin: 12px 0 10px 0;
    font-family: Teko, Montserrat, sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.spec-p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.55;
    max-width: 290px;
    position: relative;
    z-index: 2;
}

.spec-overlay {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 22px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .78) 35%, rgba(0, 0, 0, .90));
    transform: translateY(62%);
    transition: transform .22s ease;
    z-index: 4;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

@media (hover:hover) and (pointer:fine) {
    .spec-card {
        cursor: pointer
    }

    .spec-card:hover .spec-overlay {
        transform: translateY(0)
    }
}

.spec-card.open .spec-overlay {
    transform: translateY(0)
}

.spec-sobre {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .86);
    margin-bottom: 10px;
}

.spec-sobre span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(var(--redRGB), .95);
    box-shadow: 0 12px 22px rgba(var(--redRGB), .18);
}

.spec-list {
    margin: 0;
    padding: 0 0 0 18px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.7;
}

.spec-list li {
    margin: 0 0 6px
}

.spec-list strong {
    color: rgba(255, 255, 255, .92);
    font-weight: 900
}

.spec-cta {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    background: linear-gradient(180deg, var(--red), var(--red2));
    color: #fff;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 11px;
    border: 0;
    cursor: pointer;
    clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
    box-shadow: 0 16px 26px rgba(0, 0, 0, .22);
}

.spec-cta:active {
    transform: translateY(1px)
}

/* ========= CLIENTES ========= */
.reviews {
    position: relative;
    background: var(--light);
    color: #2a2a2a;
    padding: 78px 0 70px;
    overflow: hidden;
}

.reviews::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(0, 0, 0, .08) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: .55;
    pointer-events: none;
}

.reviews::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    top: 0;
    height: 10px;
    background: linear-gradient(90deg, transparent, rgba(var(--redRGB), .95), transparent);
    opacity: .95;
    transform-origin: center;
    pointer-events: none;
}

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

.rv-top {
    display: flex;
    gap: 22px;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.rv-left {
    max-width: 720px
}

.rv-stars {
    display: flex;
    gap: 6px;
    margin: 0 0 12px 0;
    align-items: center
}

.rv-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .12))
}

.rv-kicker {
    margin: 0 0 8px 0;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #2f2f2f;
    font-weight: 800;
}

.rv-title {
    margin: 0 0 12px 0;
    font-family: Teko, Montserrat, sans-serif;
    font-size: 54px;
    line-height: .92;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
}

.rv-sub {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: #4b4b4b;
    max-width: 660px;
}

.rv-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(460px, 100%);
}

.rv-badge {
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
}

.rv-badge i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--redRGB), .10);
    color: var(--red);
    border: 1px solid rgba(var(--redRGB), .20);
    font-size: 14px;
    flex: 0 0 auto;
}

.rv-badge .btxt {
    line-height: 1.15
}

.rv-badge .b1 {
    font-weight: 900;
    font-size: 12px;
    color: #1f1f1f
}

.rv-badge .b2 {
    font-weight: 700;
    font-size: 11px;
    color: #6b6b6b;
    margin-top: 3px
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px
}

.testi-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
    padding: 14px 14px 16px;
    position: relative;
    overflow: hidden;
    min-height: 150px;
}

.testi-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(var(--redRGB), .95), rgba(var(--red2RGB), .70));
    opacity: .95;
}

.testi-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    padding-left: 6px
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0
}

.testi-pic {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(var(--redRGB), .16), rgba(0, 0, 0, .06));
    border: 1px solid rgba(0, 0, 0, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #556;
    font-size: 12px;
    flex: 0 0 auto;
}

.testi-name {
    font-size: 12px;
    font-weight: 900;
    color: #2a2a2a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.testi-date {
    font-size: 11px;
    color: #7a7a7a;
    margin-top: 2px
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin: 2px 0 8px;
    padding-left: 6px
}

.testi-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--gold)
}

.testi-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #4a4a4a;
    padding-left: 6px
}

/* FOOTER */
.footer {
    background: var(--light);
    color: #2a2a2a;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(0, 0, 0, .08) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: .55;
    pointer-events: none;
}

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

.footer-map {
    width: min(980px, 100%);
    margin: 0 auto 48px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
    background: #fff;
}

.footer-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block
}

.footer-mid {
    width: min(980px, 100%);
    margin: 0 auto;
    align-items: center;
    gap: 26px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px
}

.footer-logo img {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .18));
}

.footer-loc {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
}

.footer-line {
    width: min(980px, 100%);
    height: 2px;
    background: rgba(var(--redRGB), .95);
    opacity: .9;
    margin: 34px auto 34px;
}

.footer-bottom {
    width: min(980px, 100%);
    margin: 0 auto;
    padding-bottom: 60px
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 56px;
    align-items: start
}

.foot-title {
    font-family: Teko, Montserrat, sans-serif;
    text-transform: uppercase;
    color: var(--red);
    letter-spacing: .06em;
    font-size: 22px;
    margin: 0 0 14px 0;
    line-height: 1.0;
    font-weight: 700;
}

.foot-p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: #4b4b4b
}

.foot-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.foot-list a {
    font-size: 12px;
    color: #2f2f2f;
    opacity: .9;
    font-weight: 600
}

.foot-list a:hover {
    color: #111;
    opacity: 1
}

.foot-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #2f2f2f;
    font-weight: 600;
    opacity: .9
}

.foot-item i {
    color: var(--red);
    font-size: 13px;
    width: 16px;
    text-align: center
}

.foot-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 26px
}

.foot-menu a {
    font-size: 12px;
    color: #2f2f2f;
    opacity: .9;
    font-weight: 600;
    white-space: nowrap
}

.foot-menu a:hover {
    color: #111;
    opacity: 1
}

.devbar {
    background: #0b0b0b;
    color: rgba(255, 255, 255, .85);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.devbar-inner {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    letter-spacing: .02em;
}

.devbar a {
    color: #fff;
    font-weight: 800;
    opacity: .95
}

.devbar a:hover {
    opacity: 1;
    text-decoration: underline
}

.wpp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    z-index: 9999;
    transition: transform .15s ease, filter .15s ease;
}

.wpp-float:hover {
    transform: translateY(-2px);
    filter: saturate(1.05) brightness(1.03)
}

.wpp-float:active {
    transform: translateY(0) scale(.98)
}

.wpp-float i {
    font-size: 32px;
    line-height: 1
}

/* responsivo */
@media (max-width:980px) {
    .nav {
        display: none
    }

    .cta {
        display: none
    }

    .hamb {
        display: flex
    }

    .brand {
        min-width: auto
    }

    .brand img {
        width: 30px
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 26px
    }

    .about-grid::before {
        display: none
    }

    .about-left {
        max-width: none;
        padding-left: 0
    }

    .about-right {
        padding-right: 0
    }

    .tilt-wrap {
        transform: none
    }

    .svc-video-grid {
        grid-template-columns: 1fr
    }

    .svc-video {
        border-right: 0;
        clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px)
    }

    .svc-side {
        border-top: 1px solid rgba(255, 255, 255, .10)
    }

    .spec-grid {
        grid-template-columns: 1fr
    }

    .spec-grid::before {
        display: none
    }

    .rv-badges {
        grid-template-columns: 1fr;
        width: 100%
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

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

    .footer-logo {
        min-width: auto
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 26px
    }

    .foot-menu {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:520px) {
    .hero-nav {
        display: none
    }

    .about-title {
        font-size: 50px
    }

    .anos-num {
        font-size: 76px
    }

    .svc-title {
        font-size: 38px
    }

    .spec-title {
        font-size: 38px
    }

    .rv-title {
        font-size: 46px
    }

    .svc-video {
        min-height: 260px
    }

    .svc-video-thumb {
        min-height: 260px
    }

    .svc-video-caption .cap-t {
        font-size: 22px
    }

    .svc-play {
        width: 58px;
        height: 58px
    }

    .footer-map iframe {
        height: 240px
    }

    .footer-logo img {
        width: 170px
    }

    .foot-menu {
        grid-template-columns: 1fr
    }
}
/* ========= FAQ ========= */
.faq{
  position: relative;
  padding: 86px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 50% 18%, rgba(255,255,255,.10), transparent 58%),
    linear-gradient(180deg, #0a0a0a 0%, #0b0b0b 55%, #090909 100%);
}

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

.faq-head{
  width:min(980px,100%);
  margin:0 auto 18px;
  text-align:left;
}
.faq-kicker{
  margin:0 0 8px 0;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.68);
  font-weight:800;
}
.faq-title{
  margin:0;
  font-family:Teko, Montserrat, sans-serif;
  font-size:44px;
  line-height:.92;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--red);
  font-weight:700;
  text-shadow:0 18px 35px rgba(0,0,0,.40);
}
.faq-sub{
  margin:10px 0 0 0;
  font-size:15px;
  line-height:1.7;
  max-width:680px;
}

.faq-box{
  width:min(980px,100%);
  margin:18px auto 0;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 28px 70px rgba(0,0,0,.55);
  overflow:hidden;
}

.faq-item{
  border-top:1px solid rgba(255,255,255,.10);
}
.faq-item:first-child{ border-top:0; }

.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 18px;
  background:linear-gradient(180deg, rgba(18,18,18,.88), rgba(10,10,10,.90));
  border:0;
  cursor:pointer;
  color:rgba(255,255,255,.88);
  text-align:left;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}
.faq-q:hover{
  filter:brightness(1.04);
}
.faq-q span{
  min-width:0;
}

.faq-ico{
  width:16px;
  height:16px;
  flex:0 0 auto;
  position:relative;
}
.faq-ico::before,
.faq-ico::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:rgba(var(--redRGB), .95);
  box-shadow:0 12px 22px rgba(var(--redRGB), .14);
}
.faq-ico::before{ width:14px; height:2px; }
.faq-ico::after{ width:2px; height:14px; transition:transform .18s ease, opacity .18s ease; }

.faq-item.open .faq-ico::after{
  opacity:0;
}

.faq-a{
  /* ✅ animação de abrir/fechar */
  max-height: 0;

  opacity: 0;

  padding: 0 18px; /* fechado (sem “pulo”) */

  transition:
    max-height .55s cubic-bezier(.2,.9,.2,1),
    opacity .22s ease,
    transform .55s cubic-bezier(.2,.9,.2,1),
    padding .35s ease;
}

.faq-item.open .faq-a{
  opacity: 1;
  padding: 18px 18px; /* aberto */
  background: #000;
}
.faq-a p{
  margin:0;
  color:rgba(255,255,255,.68);
  font-size:13px;
  line-height:1.75;
}
.faq-a strong{ color:rgba(255,255,255,.92); font-weight:900; }

.faq-cta{
  width:min(980px,100%);
  margin:16px auto 0;
  display:flex;
  justify-content:flex-start;
}
.faq-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height:44px;
  padding:0 20px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  color:#fff;
  background:linear-gradient(180deg, var(--red), var(--red2));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 16px 26px rgba(0,0,0,.22);
  cursor:pointer;
  user-select:none;
  clip-path:polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
}
.faq-btn .dot{
  width:8px; height:8px; border-radius:999px;
  background:#fff; opacity:.95;
}
.faq-btn:active{ transform:translateY(1px); }

@media (max-width:520px){
  .faq-title{ font-size:38px; }
  .faq-q{ padding:16px 14px; }
}

/* ====== PARALLAX (scroll) ====== */
.parallax{
  will-change: transform;
  transform: translate3d(0,0,0) scale(1.08);
}
@media (prefers-reduced-motion: reduce){
  .parallax{ transform:none !important; }
}

.faq{
  position: relative;
  padding: 86px 0 96px;
  overflow: hidden;

  /* ✅ imagem fixa só no FAQ */
  background-image:
    radial-gradient(1000px 520px at 50% 18%, rgba(255,255,255,.10), transparent 58%),
    linear-gradient(180deg, #00000054 0%, #0b0b0be3 55%, #090909 100%),
    url("../img/miquim.jpeg"); /* <-- sua imagem */

  background-size:
    auto,
    auto,
    cover;

  background-position:
    center,
    center,
    center;

  background-repeat: no-repeat;

  /* ✅ só a imagem fica fixed */
  background-attachment:
    scroll,
    scroll,
    fixed;
}
.section-divider{
  position: relative;
  height: 0;              /* não cria espaço extra */
  z-index: 50;            /* fica por cima das sections */
}

.section-divider-line{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: rgba(var(--redRGB), .95);
  opacity: .85;
  pointer-events: none;
}

.section-divider-btn{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border: 2px solid rgba(var(--redRGB), .95);
  background: linear-gradient(180deg, rgba(18,18,18,1), rgba(0,0,0,1));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  cursor: pointer;
  user-select: none;
}

.section-divider-btn span{
  color: var(--red);
  font-size: 26px;
  font-weight: 900;
  transform: translateY(-1px);
}

.section-divider-btn:active{
  transform: translate(-50%, -50%) translateY(1px);
}
.section-divider-btn i{
  font-size: 22px;
  line-height: 1;
  color: var(--red);
  display: block;
}

.hero .swiper-slide .slide-picture{
  width: 100%;
  height: 100%;
  display: block;
}

.hero .swiper-slide .slide-picture img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.testi-pic{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(var(--redRGB), .16), rgba(0, 0, 0, .06));
  border: 1px solid rgba(0, 0, 0, .10);
  flex: 0 0 auto;
}

/* imagem do avatar */
.testi-pic img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* fallback (letra) só quando a imagem falhar */
.testi-pic::after{
  content: attr(data-initial);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #556;
  font-size: 12px;
  opacity: 0;
}

.testi-pic.fallback::after{
  opacity: 1;
}