/* ----------------------------------------------------------------------------------------
* Simonini Software — v2.0 Visual Layer
* Carrega depois do custom.css e refina toda a identidade visual.
* Paleta: roxo #5D56F1 (mantido) + gradiente #7C6CFF | Fonte: Manrope (mantida)
* ---------------------------------------------------------------------------------------- */

:root {
    --primary-color: #0F1117;
    --secondary-color: #F4F5FA;
    --text-color: #565B68;
    --accent-color: #5D56F1;
    --accent-color-2: #7C6CFF;
    --accent-gradient: linear-gradient(135deg, #5D56F1 0%, #7C6CFF 55%, #8B5CF6 100%);
    --white-color: #FFFFFF;
    --divider-color: #E6E8F0;
    --card-border: #E9EBF3;
    --footer-bg: #0F1117;
    --footer-text: #A5A9B8;
    --shadow-card: 0 24px 48px -16px rgba(15, 17, 23, 0.10);
    --shadow-accent: 0 16px 36px -12px rgba(93, 86, 241, 0.45);
    --radius-lg: 28px;
    --radius-md: 18px;
}

/* ===== Base ===== */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-color);
}

::selection {
    background: var(--accent-color);
    color: var(--white-color);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Mata os "capitalize" espalhados pelo template (dispensa os styles inline) */
h1, h2, h3, h4, h5, h6,
.btn-default,
.main-menu ul li a,
.footer-links h2,
.footer-links ul li,
.footer-policy-links ul li,
.works-content h2,
.service-content-title h2,
.why-choose-us-item h3,
.testimonial-author-title h2,
.footer-about ul li a {
    text-transform: none;
}

/* ===== Tipografia ===== */

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}

.section-title h1,
.section-title h2 {
    font-size: clamp(2.1rem, 4.6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.06em;
}

.section-title h1 span,
.section-title h2 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent-color);
}

/* Títulos animados: o SplitText envolve cada letra em divs dentro do span,
   então o gradiente precisa ser aplicado em cada caractere também —
   sem isso as letras herdam o fill transparente e somem */
.section-title h1 span div,
.section-title h2 span div {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* estende a caixa da letra para o fundo alcançar descendentes (g, p)
       e acentos — sem isso o rabo do "g" fica sem gradiente e some */
    padding: 0.16em 0.02em 0.22em;
    margin: -0.16em -0.02em -0.22em;
}

/* Eyebrow (h3 acima dos títulos) */
.section-title h3 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.section-title h3::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: var(--accent-gradient);
    flex-shrink: 0;
}

/* ===== Botões ===== */

.btn-default {
    background: var(--accent-gradient);
    border: none;
    padding: 16px 46px 16px 24px;
    box-shadow: 0 8px 20px -10px rgba(93, 86, 241, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.btn-default:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}


/* Botões da faixa "explorar mais" — texto branco sobre o gradiente */
.explore-item-tags ul li .btn-default,
.explore-item-tags ul li .btn-default::before {
    color: var(--white-color);
}

.explore-item-tags ul li .btn-default:hover,
.explore-item-tags ul li .btn-default:hover::before {
    color: var(--accent-color);
}

/* ===== Header ===== */

header.main-header {
    background-color: var(--white-color);
}

header.main-header .header-sticky.active {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px -20px rgba(15, 17, 23, 0.25);
}

.main-menu ul li a {
    position: relative;
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.main-menu ul li a:hover::after {
    width: 100%;
}

/* Seletor de idiomas */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    padding: 4px;
    margin-left: 18px;
}

.lang-switch a {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 100px;
    transition: all 0.25s ease;
}

.lang-switch a:hover {
    color: var(--accent-color);
}

.lang-switch a.active {
    background: var(--accent-gradient);
    color: var(--white-color);
    box-shadow: 0 4px 12px -4px rgba(93, 86, 241, 0.5);
}

@media (max-width: 991px) {
    .lang-switch {
        margin-left: auto;
        margin-right: 16px;
    }

    /* Sem o menu principal (colapsado), o img width=100% do logo — SVG só com
       viewBox — explode e quebra o header em duas linhas. Trava a largura. */
    .navbar-brand {
        max-width: 150px;
        flex-shrink: 0;
    }

    .navbar-brand img {
        min-width: 0;
        width: 100%;
        display: block;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        max-width: 128px;
    }

    .lang-switch {
        margin-right: 10px;
    }

    .lang-switch a {
        padding: 6px 9px;
        font-size: 12px;
    }
}

/* ===== Header escuro na home (funde com o hero) ===== */

body.home-dark header.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
}

body.home-dark .navbar-brand img {
    filter: brightness(0) invert(1);
}

body.home-dark .main-menu ul li a {
    color: rgba(255, 255, 255, 0.85);
}

body.home-dark .main-menu ul li a:hover,
body.home-dark .main-menu ul li a:focus {
    color: var(--white-color);
}

body.home-dark .lang-switch {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

body.home-dark .lang-switch a {
    color: rgba(255, 255, 255, 0.7);
}

body.home-dark .lang-switch a:hover {
    color: var(--white-color);
}

body.home-dark .lang-switch a.active {
    color: var(--white-color);
}

/* Ao rolar, o header vira vidro escuro */
body.home-dark header.main-header .header-sticky.active {
    background: rgba(13, 11, 38, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px -20px rgba(0, 0, 0, 0.6);
}

/* Hero começa por baixo do header absoluto */
body.home-dark .hero {
    padding-top: 240px;
}

@media (max-width: 991px) {
    body.home-dark .hero {
        padding-top: 170px;
    }
}

@media (max-width: 575px) {
    body.home-dark .hero {
        padding-top: 140px;
    }
}

/* ===== Hero (escuro, aurora — ref pokeview.app) ===== */

.hero {
    position: relative;
    background:
        radial-gradient(34% 30% at 15% 15%, rgba(93, 86, 241, 0.50), transparent 62%),
        radial-gradient(30% 28% at 85% 20%, rgba(139, 92, 246, 0.38), transparent 62%),
        radial-gradient(40% 34% at 50% 100%, rgba(72, 150, 255, 0.28), transparent 62%),
        radial-gradient(120% 90% at 50% -10%, #191542 0%, #0D0B26 55%, #08071C 100%);
    padding: 120px 0;
    overflow: hidden;
}

/* Grade sutil de linhas por cima do gradiente */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 75%);
    mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 75%);
    pointer-events: none;
}

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

.hero-content .section-title h1 {
    font-size: clamp(2.5rem, 5.4vw, 4.6rem);
    color: var(--white-color);
}

.hero .section-title h3 {
    color: #B8B3FF;
}

.hero .hero-body {
    max-width: 100%;
}

.hero .hero-body p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 568px;
}

.hero .hero-stats {
    border-top-color: rgba(255, 255, 255, 0.16);
}

.hero .hero-stat h2 {
    color: var(--white-color);
}

.hero .hero-stat p {
    color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 991px) {
    .hero .hero-content {
        margin-right: 0;
    }
}

/* Auroras animadas */
.hero-aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    will-change: transform;
}

.aurora-blob.b1 {
    width: 480px;
    height: 480px;
    top: -140px;
    left: -80px;
    background: radial-gradient(circle, rgba(93, 86, 241, 0.42), transparent 65%);
    animation: aurora-drift-1 22s ease-in-out infinite alternate;
}

.aurora-blob.b2 {
    width: 420px;
    height: 420px;
    top: 10%;
    right: -100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.32), transparent 65%);
    animation: aurora-drift-2 26s ease-in-out infinite alternate;
}

.aurora-blob.b3 {
    width: 520px;
    height: 380px;
    bottom: -160px;
    left: 30%;
    background: radial-gradient(circle, rgba(72, 150, 255, 0.25), transparent 65%);
    animation: aurora-drift-3 30s ease-in-out infinite alternate;
}

@keyframes aurora-drift-1 {
    to { transform: translate(120px, 80px) scale(1.15); }
}

@keyframes aurora-drift-2 {
    to { transform: translate(-100px, 120px) scale(1.2); }
}

@keyframes aurora-drift-3 {
    to { transform: translate(-140px, -60px) scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
    .aurora-blob,
    .phone-chart span,
    .phone-live-dot {
        animation: none;
    }
}

/* ===== Celular do hero (CSS puro) ===== */

.hero-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.hero-phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(93, 86, 241, 0.45), rgba(139, 92, 246, 0.15) 55%, transparent 72%);
    filter: blur(10px);
    pointer-events: none;
}

.hero-phone {
    position: relative;
    width: 330px;
    border-radius: 46px;
    padding: 10px;
    background: linear-gradient(160deg, #23253a, #101120);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 40px 80px -24px rgba(8, 7, 28, 0.85),
        0 0 60px -12px rgba(93, 86, 241, 0.45);
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 104px;
    height: 24px;
    border-radius: 12px;
    background: #101120;
    box-shadow: 0 2px 8px rgba(20, 30, 60, 0.25);
    z-index: 2;
}

.hero-phone-screen {
    background: var(--secondary-color);
    border-radius: 38px;
    padding: 56px 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 600px;
    overflow: hidden;
}

/* Painel de app dentro do celular */
.phone-dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--divider-color);
}

.phone-dash-header img {
    width: 96px;
}

.phone-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1FA45B;
    background: rgba(31, 164, 91, 0.10);
    padding: 5px 10px;
    border-radius: 100px;
}

.phone-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1FA45B;
    animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.8); }
}

.phone-metric-card {
    background: var(--white-color);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 10px 24px -16px rgba(15, 17, 23, 0.18);
}

.phone-metric-card > p {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 4px;
}

.phone-metric-card h3 {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.metric-up {
    font-size: 12px;
    font-weight: 700;
    color: #1FA45B;
}

.phone-chart {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 74px;
}

.phone-chart span {
    flex: 1;
    height: var(--h);
    border-radius: 6px 6px 3px 3px;
    background: var(--accent-gradient);
    opacity: 0.9;
    transform-origin: bottom;
    animation: bar-grow 0.9s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.phone-chart span:nth-child(1) { animation-delay: 0.65s; opacity: 0.45; }
.phone-chart span:nth-child(2) { animation-delay: 0.75s; opacity: 0.55; }
.phone-chart span:nth-child(3) { animation-delay: 0.85s; opacity: 0.6; }
.phone-chart span:nth-child(4) { animation-delay: 0.95s; opacity: 0.7; }
.phone-chart span:nth-child(5) { animation-delay: 1.05s; opacity: 0.8; }
.phone-chart span:nth-child(6) { animation-delay: 1.15s; opacity: 0.9; }
.phone-chart span:nth-child(7) { animation-delay: 1.25s; }

@keyframes bar-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.phone-mini-row {
    display: flex;
    gap: 12px;
    flex: 1;
}

.phone-mini-card {
    flex: 1;
    background: var(--white-color);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 8px 20px -16px rgba(15, 17, 23, 0.15);
    align-self: flex-start;
    width: 100%;
}

.phone-mini-card p {
    font-size: 11px;
    font-weight: 600;
    margin: 0 0 3px;
}

.phone-mini-card h4 {
    font-size: 17px;
    font-weight: 800;
    margin: 0;
}

.phone-mini-card h4 .fa-star {
    font-size: 12px;
    color: #E8A33D;
}

.phone-cta {
    display: block;
    text-align: center;
    background: var(--accent-gradient);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 18px;
    border-radius: 100px;
    box-shadow: 0 10px 24px -10px rgba(93, 86, 241, 0.65);
    transition: transform 0.25s ease;
}

.phone-cta:hover {
    color: var(--white-color);
    transform: translateY(-2px);
}

/* ===== Home screen (springboard) dentro do celular ===== */

.hero-phone-screen.phone-springboard {
    background: url(../images/phone-wallpaper.webp) no-repeat center / cover;
    padding: 16px 16px 18px;
    gap: 16px;
}

.phone-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1E2430;
    font-size: 12px;
    font-weight: 700;
    padding: 0 10px;
    height: 30px;
}

.ps-icons {
    display: inline-flex;
    gap: 5px;
    font-size: 10px;
    opacity: 0.92;
}

.phone-apps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 8px;
    flex: 1;
    align-content: start;
    padding-top: 10px;
}

.phone-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: app-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.phone-app:nth-child(1) { animation-delay: 0.55s; }
.phone-app:nth-child(2) { animation-delay: 0.61s; }
.phone-app:nth-child(3) { animation-delay: 0.67s; }
.phone-app:nth-child(4) { animation-delay: 0.73s; }
.phone-app:nth-child(5) { animation-delay: 0.79s; }
.phone-app:nth-child(6) { animation-delay: 0.85s; }
.phone-app:nth-child(7) { animation-delay: 0.91s; }
.phone-app:nth-child(8) { animation-delay: 0.97s; }
.phone-app:nth-child(9) { animation-delay: 1.03s; }

@keyframes app-pop {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.phone-app img {
    width: 62px;
    height: 62px;
    border-radius: 15px;
    box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.55);
    transition: transform 0.25s ease;
}

.phone-app:hover img {
    transform: scale(1.1);
}

.phone-app span {
    font-size: 11px;
    font-weight: 700;
    color: #1E2430;
    white-space: nowrap;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.65);
}

.phone-pagedots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.phone-pagedots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(30, 36, 48, 0.30);
}

.phone-pagedots span.on {
    background: rgba(30, 36, 48, 0.85);
}

.phone-dock-cta {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #1E2430;
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    border-radius: 22px;
    box-shadow: 0 10px 24px -14px rgba(20, 40, 20, 0.45);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.phone-dock-cta:hover {
    background: var(--accent-gradient);
    color: var(--white-color);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .phone-app {
        animation: none;
    }
}

/* Chips flutuantes ao redor do celular */
.hero-chip {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 16px 32px -16px rgba(8, 7, 28, 0.8);
}

.hero-chip.chip-1 {
    top: -6px;
    left: -56px;
    z-index: 3;
    animation: chip-float 5s ease-in-out infinite;
}

.hero-chip.chip-2 {
    bottom: 16.5%;
    right: -48px;
    z-index: 3;
    animation: chip-float 5s ease-in-out 1.2s infinite;
}

@keyframes chip-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
    .hero-phone-wrap {
        margin-top: 40px;
    }

    .hero-chip.chip-1 {
        left: 4px;
    }

    .hero-chip.chip-2 {
        right: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-phone,
    .hero-chip {
        animation: none;
    }
}

/* ===== Hero stats ===== */

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 56px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--divider-color);
}

.hero-stat h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.hero-stat h2 .counter {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}


/* ===== Sobre Nós 2.0 — bento grid ===== */

.about-us.about-v2 {
    background:
        radial-gradient(620px 420px at 94% 8%, rgba(93, 86, 241, 0.07), transparent 60%),
        radial-gradient(480px 360px at 4% 92%, rgba(139, 92, 246, 0.05), transparent 60%),
        var(--white-color);
}

.about-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    background: var(--white-color);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(93, 86, 241, 0.35);
    box-shadow: var(--shadow-card);
}

/* texto */
.bento-text {
    grid-column: span 7;
    padding: 44px 46px;
    background:
        radial-gradient(420px 280px at 100% 0%, rgba(93, 86, 241, 0.05), transparent 60%),
        var(--secondary-color);
}

.bento-text .about-lead {
    font-size: 19px;
    line-height: 1.65;
    font-weight: 500;
    color: #343A48;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}

.about-list li {
    position: relative;
    padding-left: 34px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--primary-color);
}

.about-list li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 11px;
    font-weight: 900;
    color: var(--white-color);
    background: var(--accent-gradient);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 6px 14px -6px rgba(93, 86, 241, 0.65);
}

/* foto */
.bento-photo {
    grid-column: span 5;
    min-height: 340px;
}

.bento-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.bento-photo:hover img {
    transform: scale(1.05);
}

.bento-photo-tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 14px 28px -14px rgba(15, 17, 23, 0.4);
}

/* missão (card escuro) */
.bento-mission {
    grid-column: span 4;
    padding: 34px 32px;
    background:
        radial-gradient(300px 200px at 85% 10%, rgba(93, 86, 241, 0.35), transparent 62%),
        radial-gradient(120% 100% at 50% 0%, #191542 0%, #0D0B26 60%, #08071C 100%);
    border-color: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.bento-mission .fa-quote-left {
    font-size: 26px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.bento-mission p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0 0 18px;
    flex: 1;
}

.bento-mission-brand {
    font-size: 13px;
    font-weight: 700;
    color: #A8A3FF;
}

/* onde estamos (compacto, sem fotos) */
.bento-locations {
    grid-column: span 8;
    padding: 30px 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    background:
        radial-gradient(380px 240px at 96% 0%, rgba(93, 86, 241, 0.06), transparent 60%),
        var(--white-color);
}

.bento-loc-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-color);
    margin: 0;
}

.bento-loc-title .fa-location-dot {
    color: var(--accent-color);
}

.loc-timeline {
    position: relative;
    display: flex;
    flex: 1;
    align-items: flex-start;
    padding-top: 6px;
}

/* linha que conecta os pontos */
.loc-timeline::before {
    content: '';
    position: absolute;
    top: 47px;
    left: 6%;
    right: 6%;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #5D56F1 0%, #7C6CFF 50%, rgba(139, 92, 246, 0.35) 100%);
}

.loc-tl-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    gap: 10px;
}

.loc-tl-year {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loc-tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: 3px solid var(--white-color);
    box-shadow: 0 0 0 3px rgba(93, 86, 241, 0.25), 0 6px 14px -4px rgba(93, 86, 241, 0.6);
    z-index: 1;
}

.loc-tl-info h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 4px 0 3px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.loc-tl-info p {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.loc-badge {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-color);
    background: var(--accent-gradient);
    padding: 3px 9px;
    border-radius: 100px;
    box-shadow: 0 4px 10px -4px rgba(93, 86, 241, 0.6);
}

/* filiais: versão contornada, mantendo a sede em destaque */
.loc-badge.loc-badge-alt {
    color: var(--accent-color);
    background: rgba(93, 86, 241, 0.08);
    border: 1px solid rgba(93, 86, 241, 0.35);
    box-shadow: none;
}

@media (max-width: 991px) {
    .bento-text,
    .bento-photo,
    .bento-mission,
    .bento-locations {
        grid-column: span 12;
    }

    .loc-timeline {
        flex-direction: column;
        gap: 26px;
        padding-left: 8px;
    }

    .loc-timeline::before {
        top: 8px;
        bottom: 8px;
        left: 15px;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, #5D56F1 0%, #7C6CFF 50%, rgba(139, 92, 246, 0.35) 100%);
    }

    .loc-tl-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 14px;
    }

    .loc-tl-item .loc-tl-year {
        order: 2;
        margin-left: auto;
    }

    .loc-tl-item .loc-tl-dot {
        order: 0;
    }

    .loc-tl-item .loc-tl-info {
        order: 1;
    }

    .bento-text {
        padding: 32px 26px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }
}


/* ===== Página Sobre 2.0 ===== */

.about-hero {
    position: relative;
    background:
        radial-gradient(34% 30% at 15% 15%, rgba(93, 86, 241, 0.50), transparent 62%),
        radial-gradient(30% 28% at 85% 20%, rgba(139, 92, 246, 0.38), transparent 62%),
        radial-gradient(40% 34% at 50% 100%, rgba(72, 150, 255, 0.28), transparent 62%),
        radial-gradient(120% 90% at 50% -10%, #191542 0%, #0D0B26 55%, #08071C 100%);
    padding: 110px 0 90px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 75%);
    mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 75%);
    pointer-events: none;
}

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

.about-hero .section-title h1 {
    color: var(--white-color);
}

.about-hero .section-title h3 {
    color: #B8B3FF;
}

.about-hero-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.7;
    max-width: 660px;
    margin: 14px 0 0;
}

.about-hero .hero-stats {
    border-top-color: rgba(255, 255, 255, 0.16);
    margin-top: 44px;
    padding-top: 32px;
}

.about-hero .hero-stat h2 {
    color: var(--white-color);
}

.about-hero .hero-stat p {
    color: rgba(255, 255, 255, 0.74);
}


/* variação compacta para heros de páginas internas */
.about-hero.page-hero-compact {
    padding: 90px 0 70px;
}

.about-hero.page-hero-compact .about-hero-sub {
    margin-top: 10px;
}

/* história */
.about-story {
    padding: 100px 0;
    background:
        radial-gradient(560px 380px at 96% 10%, rgba(93, 86, 241, 0.06), transparent 60%),
        var(--white-color);
}

.story-content .section-title {
    margin-bottom: 26px;
}

.story-content p {
    margin-bottom: 18px;
}

.story-lead {
    font-size: 19px;
    line-height: 1.65;
    font-weight: 500;
    color: #343A48;
}

.story-content .btn-default {
    margin-top: 10px;
}

/* valores */
.about-values {
    background: var(--secondary-color);
    padding: 100px 0 70px;
}

.value-card {
    background: var(--white-color);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(93, 86, 241, 0.35);
    box-shadow: var(--shadow-card);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--accent-gradient);
    color: var(--white-color);
    font-size: 21px;
    margin-bottom: 20px;
    box-shadow: 0 12px 24px -10px rgba(93, 86, 241, 0.6);
}

.value-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14.5px;
    margin: 0;
}

/* ===== Seção Time + IA (faixa escura) ===== */

.ai-team {
    position: relative;
    background:
        radial-gradient(34% 40% at 85% 10%, rgba(93, 86, 241, 0.35), transparent 62%),
        radial-gradient(30% 36% at 10% 90%, rgba(139, 92, 246, 0.28), transparent 62%),
        radial-gradient(120% 100% at 50% 0%, #191542 0%, #0D0B26 55%, #08071C 100%);
    padding: 100px 0 70px;
    overflow: hidden;
}

.ai-team::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
    pointer-events: none;
}

.ai-team .container {
    position: relative;
    z-index: 1;
}

.ai-team .section-title h2 {
    color: var(--white-color);
}

.ai-team .section-title h3 {
    color: #A8A3FF;
}

.ai-team-intro {
    margin-bottom: 50px;
}

.ai-team-intro p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    max-width: 760px;
    margin: 0;
}

.ai-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.ai-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.ai-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--accent-gradient);
    color: var(--white-color);
    font-size: 22px;
    margin-bottom: 22px;
    box-shadow: 0 12px 24px -10px rgba(93, 86, 241, 0.6);
}

.ai-card h3 {
    color: var(--white-color);
    font-size: 20px;
    margin-bottom: 12px;
}

.ai-card p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    margin: 0;
}

/* ===== Page header (páginas internas) ===== */

.page-header {
    background:
        radial-gradient(600px 380px at 20% 30%, rgba(93, 86, 241, 0.10), transparent 65%),
        radial-gradient(520px 360px at 85% 70%, rgba(139, 92, 246, 0.08), transparent 65%),
        var(--secondary-color);
    padding: 130px 0;
}

.page-header-box h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    letter-spacing: -0.035em;
}

.page-header-box ol {
    border: 1px solid var(--divider-color);
    background: var(--white-color);
    box-shadow: 0 8px 24px -16px rgba(15, 17, 23, 0.15);
}

/* ===== Cards (serviços, trabalhos, por que nós, depoimentos) ===== */

.service-item,
.works-item,
.why-choose-us-item,
.testimonial-item,
.why-us-explore-item {
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-item:hover,
.works-item:hover,
.why-choose-us-item:hover,
.testimonial-item:hover {
    transform: translateY(-6px);
    border-color: rgba(93, 86, 241, 0.35);
    box-shadow: var(--shadow-card);
}

.service-image,
.service-image img,
.works-image,
.works-image img {
    border-radius: calc(var(--radius-lg) - 8px);
}

.service-content-title a {
    background: var(--accent-gradient);
    box-shadow: 0 8px 20px -10px rgba(93, 86, 241, 0.5);
}

.works-item {
    background-color: var(--white-color);
}

.why-choose-us-item .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(93, 86, 241, 0.08);
}

.why-choose-us-item .icon-box img {
    width: 40px;
    height: 40px;
}


/* ===== Alguns Trabalhos — cards compactos ===== */

.work-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white-color);
    border: 1px solid var(--card-border);
    border-radius: 22px;
    padding: 24px;
    height: calc(100% - 24px);
    margin-bottom: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.work-row:hover {
    transform: translateY(-4px);
    border-color: rgba(93, 86, 241, 0.35);
    box-shadow: var(--shadow-card);
}

.work-row-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    flex-shrink: 0;
    /* borda + sombra dupla para ícones de fundo branco não sumirem no card */
    border: 1px solid rgba(15, 17, 23, 0.08);
    box-shadow:
        0 2px 6px rgba(15, 17, 23, 0.10),
        0 14px 28px -12px rgba(15, 17, 23, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-row:hover .work-row-icon {
    box-shadow:
        0 2px 6px rgba(15, 17, 23, 0.12),
        0 18px 34px -12px rgba(93, 86, 241, 0.35);
}

.work-row:hover .work-row-icon {
    transform: scale(1.08);
}

.work-row-body {
    flex: 1;
    min-width: 0;
}

.work-row-body h3 {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 6px;
}

.work-row-body h3 .work-year {
    font-size: 13px;
}

.work-row-body p {
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 0 14px;
}

.work-row-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.work-row-links img {
    height: 30px;
    width: auto;
    transition: transform 0.25s ease;
}

.work-row-links a:hover img {
    transform: translateY(-2px);
}

.work-row-links .work-link {
    margin-top: 0;
}



/* Portfólio: todos os cards com a mesma altura */
.our-projects .work-row {
    height: 224px;
    align-items: center;
    overflow: hidden;
}

.our-projects .work-row-body p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 575px) {
    .our-projects .work-row {
        height: auto;
        min-height: 224px;
    }
}


/* Cards do portfólio: todos com gradiente */
.our-projects .work-row,
.work-row.work-row-grad {
    position: relative;
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 20px 40px -18px rgba(93, 86, 241, 0.55);
}

.our-projects .work-row::before,
.work-row.work-row-grad::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(260px 160px at 88% 0%, rgba(255, 255, 255, 0.18), transparent 65%);
    border-radius: inherit;
    pointer-events: none;
}

.our-projects .work-row:hover,
.work-row.work-row-grad:hover {
    border-color: transparent;
    box-shadow: 0 28px 54px -18px rgba(93, 86, 241, 0.7);
}

.our-projects .work-row .work-row-body h3,
.our-projects .work-row .work-row-body h3 .work-year,
.work-row-grad .work-row-body h3,
.work-row-grad .work-row-body h3 .work-year {
    color: var(--white-color);
}

.our-projects .work-row .work-row-body h3 .work-year,
.work-row-grad .work-row-body h3 .work-year {
    opacity: 0.75;
}

.our-projects .work-row .work-row-body p,
.work-row-grad .work-row-body p {
    color: rgba(255, 255, 255, 0.88);
}

.our-projects .work-row .work-link,
.work-row-grad .work-link {
    color: var(--white-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.our-projects .work-row .work-link:hover,
.work-row-grad .work-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

.our-projects .work-row .work-row-icon,
.work-row-grad .work-row-icon {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 24px -8px rgba(8, 7, 28, 0.5);
}

/* monograma no gradiente: tile branco com letra roxa */
.our-projects .work-row .work-monogram,
.work-row-grad .work-monogram {
    background: var(--white-color);
    color: var(--accent-color);
    text-shadow: none;
}

/* ===== Filtro do portfólio (segmentado) ===== */

.our-projects-nav {
    display: flex;
    justify-content: center;
}

.our-projects-nav ul {
    display: inline-flex;
    gap: 4px;
    background: var(--white-color);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    padding: 6px;
    box-shadow: 0 14px 30px -18px rgba(15, 17, 23, 0.18);
}

.our-projects-nav ul li {
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 100px;
}

.our-projects-nav ul li:hover {
    background: transparent;
    color: inherit;
}

.our-projects-nav ul li a {
    display: inline-block;
    font-size: 14.5px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 100px;
    color: var(--text-color);
    transition: all 0.25s ease;
}

.our-projects-nav ul li a:hover {
    color: var(--accent-color);
}

.filter-count {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    background: rgba(93, 86, 241, 0.10);
    color: var(--accent-color);
    border-radius: 100px;
    padding: 2px 8px;
    margin-left: 4px;
    vertical-align: 1px;
    transition: all 0.25s ease;
}

.our-projects-nav ul li a.active-btn .filter-count {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white-color);
}

.our-projects-nav ul li a.active-btn {
    background: var(--accent-gradient);
    color: var(--white-color);
    box-shadow: 0 6px 16px -6px rgba(93, 86, 241, 0.6);
}

@media (max-width: 767px) {
    .our-projects-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 24px;
    }
}

/* Monogramas para projetos sem ícone de app */
.work-monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--white-color);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.work-monogram.m1 { background: linear-gradient(135deg, #5D56F1, #8B5CF6); }
.work-monogram.m2 { background: linear-gradient(135deg, #4A7DF0, #5D56F1); }
.work-monogram.m3 { background: linear-gradient(135deg, #7C4DEF, #C05CF6); }
.work-monogram.m4 { background: linear-gradient(135deg, #3F51C9, #7C6CFF); }

@media (max-width: 575px) {
    .work-row {
        flex-direction: column;
    }
}


/* ===== Cards de produto (página Produtos) ===== */

.product-card {
    background:
        radial-gradient(320px 200px at 95% 0%, rgba(93, 86, 241, 0.06), transparent 60%),
        var(--white-color);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 30px 30px 28px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(93, 86, 241, 0.35);
    box-shadow: var(--shadow-card);
}

.product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    border: 1px solid rgba(15, 17, 23, 0.08);
    box-shadow:
        0 2px 6px rgba(15, 17, 23, 0.10),
        0 16px 30px -14px rgba(15, 17, 23, 0.35);
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.07);
}

.product-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(93, 86, 241, 0.08);
    border: 1px solid rgba(93, 86, 241, 0.22);
    border-radius: 100px;
    padding: 6px 12px;
}

.product-card h3 {
    font-size: 21px;
    font-weight: 800;
    margin: 0 0 10px;
}

.product-card p {
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}

.product-card .work-row-links {
    margin-top: auto;
}

/* link do site sempre abaixo dos badges das lojas */
.product-card .work-row-links .work-link {
    flex-basis: 100%;
}

/* badges "em breve": visíveis mas inativos */
.badge-soon {
    display: inline-block;
    cursor: default;
}

.badge-soon img {
    height: 30px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.45;
}

/* ===== Simonini Talents ===== */

.talents {
    padding: 0 0 100px;
    background: var(--white-color);
}

.talents-box {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(520px 320px at 90% 10%, rgba(93, 86, 241, 0.10), transparent 62%),
        radial-gradient(420px 300px at 5% 95%, rgba(139, 92, 246, 0.08), transparent 60%),
        var(--secondary-color);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 64px 70px;
}

.talents-box .section-title {
    margin-bottom: 24px;
}

.talents-intro {
    font-size: 17px;
    max-width: 560px;
    margin-bottom: 24px;
}

.talents-list {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
}

.talents-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.talents-list li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 13px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: var(--white-color);
}

/* Cards de devs (visual) */
.talents-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 10px 0 10px 30px;
}

.talent-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white-color);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 16px 32px -20px rgba(15, 17, 23, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.talent-card:nth-child(1) { transform: translateX(-14px); }
.talent-card:nth-child(2) { transform: translateX(14px); }
.talent-card:nth-child(3) { transform: translateX(-6px); }

.talent-card:hover {
    border-color: rgba(93, 86, 241, 0.35);
    box-shadow: var(--shadow-card);
    transform: translateX(0) translateY(-3px);
}

.talent-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 24px;
    border-radius: 16px;
    background: rgba(93, 86, 241, 0.10);
    flex-shrink: 0;
}

.talent-info {
    flex: 1;
}

.talent-info h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 3px;
}

.talent-info p {
    font-size: 13px;
    margin: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.talent-badge {
    font-size: 13px;
    font-weight: 800;
    color: #E8A33D;
    background: rgba(232, 163, 61, 0.12);
    padding: 6px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .talents-box {
        padding: 44px 32px;
    }

    .talents-visual {
        padding: 30px 0 0;
    }

    .talent-card:nth-child(n) {
        transform: none;
    }
}

/* ===== Clientes / logos ===== */

.partners-logo {
    background-color: var(--white-color);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partners-logo img {
    margin: 0 auto !important;
    max-width: 150px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partners-logo:hover {
    transform: translateY(-4px);
    border-color: rgba(93, 86, 241, 0.3);
    box-shadow: var(--shadow-card);
}

.partners-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.exclusive-partners {
    background-color: var(--secondary-color);
}


/* ===== Por que nos escolher — faixa escura (mesma paleta da seção IA) ===== */

.why-choose-us {
    position: relative;
    background:
        radial-gradient(34% 40% at 10% 15%, rgba(93, 86, 241, 0.35), transparent 62%),
        radial-gradient(30% 36% at 92% 85%, rgba(139, 92, 246, 0.28), transparent 62%),
        radial-gradient(120% 100% at 50% 0%, #191542 0%, #0D0B26 55%, #08071C 100%);
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
    pointer-events: none;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.why-choose-us .section-title h2 {
    color: var(--white-color);
}

.why-choose-us .section-title h3 {
    color: #A8A3FF;
}

/* cards de vidro escuro */
.why-choose-us-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.why-choose-us-item:hover {
    border-color: rgba(139, 92, 246, 0.55);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.why-choose-us-item h3 {
    color: var(--white-color);
}

.why-choose-us-item p {
    color: rgba(255, 255, 255, 0.62);
}

/* caixa do ícone clara para os SVGs roxos continuarem visíveis */
.why-choose-us-item .icon-box {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px -10px rgba(93, 86, 241, 0.5);
}

/* card grande "explorar mais" */
.why-us-explore-item {
    background:
        radial-gradient(480px 300px at 85% 15%, rgba(93, 86, 241, 0.18), transparent 60%),
        rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.why-us-explore-item .section-title h2 {
    color: var(--white-color);
}

.why-us-explore-item .explore-item-content p {
    color: rgba(255, 255, 255, 0.68);
}

/* ===== Marquee de clientes ===== */

.partners-marquee {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    padding: 4px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

.partners-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track .partners-logo {
    width: 210px;
    min-height: 100px;
    flex-shrink: 0;
    margin-bottom: 0;
}

@keyframes marquee-scroll {
    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

/* ===== CTA banner ===== */

.cta-banner {
    padding: 100px 0;
    background: var(--white-color);
}

.cta-box {
    position: relative;
    overflow: hidden;
    background: var(--accent-gradient);
    border-radius: 32px;
    padding: 64px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px 48px;
    flex-wrap: wrap;
    box-shadow: 0 32px 64px -24px rgba(93, 86, 241, 0.45);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(420px 260px at 85% 0%, rgba(255, 255, 255, 0.16), transparent 65%),
        radial-gradient(360px 240px at 8% 100%, rgba(255, 255, 255, 0.10), transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
}

.cta-content h2 {
    color: var(--white-color);
    font-size: clamp(1.7rem, 3.2vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    max-width: 560px;
}

.btn-cta {
    position: relative;
    background: var(--white-color);
    color: var(--accent-color);
    box-shadow: 0 14px 30px -12px rgba(15, 17, 23, 0.4);
}

.btn-cta::before {
    color: var(--accent-color);
}

.btn-cta::after {
    background: var(--primary-color);
}

.btn-cta:hover {
    color: var(--white-color);
}

.btn-cta:hover::before {
    color: var(--white-color);
}

@media (max-width: 767px) {
    .cta-box {
        padding: 44px 32px;
    }
}

/* ===== Nav ativa ===== */

.main-menu ul li a.nav-active {
    color: var(--accent-color);
}

.main-menu ul li a.nav-active::after {
    width: 100%;
}

/* ===== Depoimentos ===== */

/* Altura uniforme: todos os cards da fileira ficam do mesmo tamanho,
   com o autor sempre alinhado na base */
.testimonial-slider .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-item {
    position: relative;
    padding: 44px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    margin-bottom: 0;
}

.testimonial-body {
    margin-top: auto;
    padding-top: 24px;
}

.testimonial-item::before {
    content: '\201C';
    position: absolute;
    top: 18px;
    right: 36px;
    font-size: 110px;
    font-weight: 800;
    line-height: 1;
    color: rgba(93, 86, 241, 0.12);
    pointer-events: none;
}

.testimonial-body img {
    border: 2px solid rgba(93, 86, 241, 0.35);
}

.testimonial-author-title p {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
}

/* ===== Portfólio: ano e badges das lojas ===== */

.works-content h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.work-year {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0;
}

.work-stores {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.work-stores img {
    height: 32px;
    width: auto;
    transition: transform 0.25s ease;
}

.work-stores a:hover img {
    transform: translateY(-2px);
}

/* Link de site nos cards de produto */
.work-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 16px;
    transition: color 0.25s ease, gap 0.25s ease;
}

.work-link::after {
    content: '\f08e';
    font-family: 'FontAwesome';
    font-size: 12px;
}

.work-link:hover {
    color: var(--accent-color-2);
    gap: 10px;
}

/* ===== Formulário de contato ===== */

.contact-form .form-control {
    border: 1px solid var(--divider-color);
    border-radius: 14px;
    padding: 14px 18px;
    background: var(--white-color);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(93, 86, 241, 0.12);
    outline: none;
}

/* ===== Footer (claro, logo colorido) ===== */

.main-footer {
    background-color: var(--white-color);
    border-top: 1px solid var(--divider-color);
    padding: 90px 0 0;
}

/* bloco do logo: centralizado e compacto, alinhado à altura dos cards */
.main-footer .footer-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.main-footer .footer-about figure {
    margin: 0 0 0;
}

.main-footer .footer-about img {
    width: 240px;
    max-width: 100%;
    margin: 0;
}

.footer-tagline strong {
    font-weight: 800;
    color: var(--primary-color);
}

.footer-tagline {
    margin: 0 0 12px;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--primary-color);
    max-width: 100%;
    white-space: nowrap;
}

/* praças em destaque */
.footer-locs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.footer-locs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary-color);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.footer-locs span:hover {
    border-color: rgba(93, 86, 241, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .footer-tagline {
        white-space: normal;
    }
}

.main-footer .footer-links h2 {
    color: var(--primary-color);
    font-size: 18px;
    letter-spacing: 0.01em;
}

.main-footer .footer-links ul li,
.main-footer .footer-links ul li a,
.main-footer .footer-copyright-text p,
.main-footer .footer-policy-links ul li a {
    color: var(--text-color);
}

.main-footer .footer-links ul li:hover,
.main-footer .footer-links ul li:hover a,
.main-footer .footer-policy-links ul li a:hover {
    color: var(--accent-color);
}

.main-footer .footer-copyright {
    border-top: 1px solid var(--divider-color);
    padding: 24px 0;
}

.main-footer .footer-policy-links ul li.highlighted a {
    color: var(--primary-color);
}


/* ===== Cards de links do footer (gradiente roxo) ===== */

.footer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 100%;
}

.footer-card {
    position: relative;
    overflow: hidden;
    background: var(--accent-gradient);
    border-radius: 22px;
    padding: 28px 28px 24px;
    box-shadow: 0 20px 40px -20px rgba(93, 86, 241, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(220px 140px at 85% 0%, rgba(255, 255, 255, 0.16), transparent 65%);
    pointer-events: none;
}

.footer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px -20px rgba(93, 86, 241, 0.65);
}

.main-footer .footer-card h2 {
    color: var(--white-color);
    position: relative;
}

.main-footer .footer-card ul li,
.main-footer .footer-card ul li a {
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.main-footer .footer-card ul li:hover,
.main-footer .footer-card ul li:hover a {
    color: var(--white-color);
}

@media (max-width: 991px) {
    .footer-cards {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
}


/* ===== Contato 2.0 ===== */

.contact-us {
    padding: 100px 0;
}

.contact-channels h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white-color);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 20px 22px;
    margin-bottom: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

a.channel-card:hover {
    transform: translateY(-3px);
    border-color: rgba(93, 86, 241, 0.35);
    box-shadow: var(--shadow-card);
}

.channel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--accent-gradient);
    color: var(--white-color);
    font-size: 19px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px -8px rgba(93, 86, 241, 0.6);
}

.channel-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.channel-body strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-color);
}

.channel-body > span {
    font-size: 14px;
    color: var(--text-color);
    overflow-wrap: anywhere;
}

.channel-socials {
    display: inline-flex;
    gap: 10px;
    margin-top: 6px;
}

.channel-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(93, 86, 241, 0.08);
    color: var(--accent-color);
    font-size: 15px;
    transition: all 0.25s ease;
}

.channel-socials a:hover {
    background: var(--accent-gradient);
    color: var(--white-color);
    transform: translateY(-2px);
}

.response-badge {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(93, 86, 241, 0.08);
    border: 1px dashed rgba(93, 86, 241, 0.4);
    border-radius: 100px;
    padding: 10px 18px;
    margin-top: 8px;
}

.contact-form-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 22px;
}

.contact-form-box {
    background: var(--white-color);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 24px 48px -28px rgba(15, 17, 23, 0.15);
}

/* ===== Mapa das cidades ===== */

.contact-map {
    background: var(--secondary-color);
    padding: 100px 0;
}

.contact-map .map-tabs {
    margin-bottom: 28px;
}

.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    background: var(--white-color);
}

.map-frame iframe,
#mapCanvas {
    display: block;
    width: 100%;
    height: 460px;
    border: 0;
    z-index: 1;
}

/* popup do leaflet no estilo do site */
.leaflet-popup-content-wrapper {
    border-radius: 14px;
    box-shadow: 0 18px 36px -16px rgba(15, 17, 23, 0.35);
    font-family: var(--default-font);
}

.leaflet-popup-content {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-color);
}

.leaflet-popup-content strong {
    color: var(--primary-color);
    font-size: 14.5px;
}

.map-pop-role {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(93, 86, 241, 0.10);
    border-radius: 100px;
    padding: 2px 9px;
    margin: 4px 0;
}

.map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.map-footer p {
    margin: 0;
    font-weight: 700;
    color: var(--primary-color);
}

.map-footer p .fa-location-dot {
    color: var(--accent-color);
    margin-right: 8px;
}

@media (max-width: 991px) {
    .contact-form-box {
        margin-top: 40px;
    }

    .map-frame iframe {
        height: 360px;
    }
}

/* ===== Preloader v3 — divino ===== */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(34% 30% at 15% 15%, rgba(93, 86, 241, 0.45), transparent 62%),
        radial-gradient(30% 28% at 85% 20%, rgba(139, 92, 246, 0.32), transparent 62%),
        radial-gradient(120% 90% at 50% -10%, #191542 0%, #0D0B26 55%, #08071C 100%);
    overflow: hidden;
    transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
}

.preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 75%);
    mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 75%);
    pointer-events: none;
}

.preloader.loaded {
    transform: translateY(-100%);
}

/* auroras vivas */
.preloader-aurora span {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.preloader-aurora .pa1 {
    width: 460px;
    height: 460px;
    top: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(93, 86, 241, 0.5), transparent 65%);
    animation: aurora-drift-1 16s ease-in-out infinite alternate;
}

.preloader-aurora .pa2 {
    width: 420px;
    height: 420px;
    bottom: -140px;
    right: -90px;
    background: radial-gradient(circle, rgba(72, 150, 255, 0.35), transparent 65%);
    animation: aurora-drift-2 20s ease-in-out infinite alternate;
}

/* logo que se desenha */
.preloader-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.preloader-mark {
    width: 120px;
    height: auto;
    overflow: visible;
}

.pl-path {
    fill: none;
    stroke: url(#plgrad);
    stroke-width: 3.74;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: pl-draw 2s cubic-bezier(0.6, 0, 0.3, 1) 0.15s forwards;
    filter: drop-shadow(0 0 14px rgba(110, 84, 241, 0.65));
}

@keyframes pl-draw {
    to { stroke-dashoffset: 0; }
}

.preloader.done .preloader-mark {
    animation: pl-pulse 0.45s ease;
}

@keyframes pl-pulse {
    0% { transform: scale(1); }
    45% { transform: scale(1.14); }
    100% { transform: scale(1); }
}

/* palavras ciclando */
.preloader-words {
    height: 26px;
    overflow: hidden;
    text-align: center;
}

.pl-word {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    transition: transform 0.26s ease, opacity 0.26s ease;
}

.pl-word.out {
    transform: translateY(-16px);
    opacity: 0;
}

.pl-word.in {
    animation: pl-word-in 0.3s ease;
}

@keyframes pl-word-in {
    from { transform: translateY(16px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* contador gigante */
.preloader-counter {
    position: absolute;
    right: 34px;
    bottom: 26px;
    z-index: 2;
    font-size: clamp(64px, 12vw, 128px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, #7C6CFF 0%, #8B5CF6 60%, #B58CFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.preloader-counter::after {
    content: '%';
    font-size: 0.38em;
    vertical-align: super;
    margin-left: 2px;
}

/* barra de progresso: linha na base da tela */
.preloader-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 2;
}

.preloader-bar-fill {
    display: block;
    width: 0%;
    height: 100%;
    background: var(--accent-gradient);
    box-shadow: 0 0 16px rgba(93, 86, 241, 0.8);
    transition: width 0.25s ease-out;
}

/* flash de saída */
.preloader-flash {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95), rgba(139, 92, 246, 0.35) 45%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

.preloader.done .preloader-flash {
    animation: pl-flash 0.5s ease-out;
}

@keyframes pl-flash {
    0% { opacity: 0; }
    35% { opacity: 0.85; }
    100% { opacity: 0; }
}

.preloader.loaded .preloader-inner {
    transform: scale(1.12);
    opacity: 0;
}

.preloader.loaded .preloader-counter {
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .pl-path {
        animation: none;
        stroke-dashoffset: 0;
    }
    .preloader-aurora span,
    .preloader.done .preloader-mark,
    .preloader.done .preloader-flash {
        animation: none;
    }
    .preloader {
        transition: opacity 0.4s ease;
    }
    .preloader.loaded {
        transform: none;
        opacity: 0;
        pointer-events: none;
    }
}

/* ===== Ajustes finos ===== */

.section-row {
    margin-bottom: 50px;
}



img {
    max-width: 100%;
}

/* ===== WhatsApp (widget krabby): balão flutuante OCULTO em todas as larguras —
   o CTA do hero ("Comece seu Projeto") é o único botão do WhatsApp ===== */

#whatsAppChatOpener {
    display: none !important;
}

/* popup do chat no mobile: centralizado acima da base */
@media (max-width: 767px) {
    .whatsAppChatWrapper {
        right: 50% !important;
        transform: translateX(50%);
        max-width: min(360px, calc(100vw - 24px)) !important;
    }

    #whatsAppChatClick:checked ~ .whatsAppChatWrapper {
        bottom: 72px !important;
    }
}

/* CTA do hero com o ícone do WhatsApp (web e mobile) */
.hero-footer .btn-default::before {
    content: '\f232';
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
    transform: translate(-20px, -50%);
}

.hero-footer .btn-default:hover::before {
    transform: translate(-20px, -50%);
}
