@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* =========================================================
   TOKENS (CORES / SOMBRAS / GLASS)
========================================================= */
:root {
    /* Brand */
    --brand-yellow: #ffc300;
    --brand-yellow-2: #ffc107;
    /* variação usada em highlight/botão hero */
    --brand-gold: #ffd700;
    --brand-yewlow-soft: rgba(255, 193, 7, 0.504);
    --brand-dark: #002e32;
    --brand-dark-2: #014046;
    --brand-dark-3: #013a3f;

    /* Neutros */
    --black: #000000;
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.846);
    --text: #111318;
    --text-2: #0b0e12;
    --gray-900: #1d1d1d;
    --gray-700: #555555;
    --gray-600: #bbbbbb;
    --gray-500: #8a8a8a;
    --gray-100: #f1f1f1;
    --paper: #f6f4ef;

    /* Backgrounds específicos */
    --hero-bg: #0f1115;
    --panel-bg: rgba(255, 255, 255, 0.035);

    /* Accents / UI */
    --accent-orange: #d9480f;
    --marker-yellow: #fdb724;

    /* Bordas */
    --border-black: #050505;
    --border-soft: rgba(17, 19, 24, 0.12);
    --border-soft-2: rgba(17, 19, 24, 0.1);
    --border-yellow-soft: rgba(255, 193, 7, 0.35);
    --border-yellow-soft-2: rgba(255, 193, 7, 0.25);
    --border-white-soft: rgba(255, 255, 255, 0.1);

    /* Textos com alpha */
    --muted-60: rgba(17, 19, 24, 0.6);
    --muted-70: rgba(17, 19, 24, 0.7);

    --hero-text: rgba(233, 236, 245, 0.92);
    --hero-muted: rgba(233, 236, 245, 0.78);
    --hero-muted-75: rgba(233, 236, 245, 0.75);
    --hero-muted-55: rgba(233, 236, 245, 0.55);

    /* Sombras */
    --shadow-soft: 0px 5px 10px rgba(0, 0, 0, 0.116);
    --shadow-svc: 0 18px 50px rgba(17, 19, 24, 0.08);
    --shadow-yellow: 0 18px 50px rgba(255, 193, 7, 0.18);
    --shadow-panel: 0 22px 70px rgba(0, 0, 0, 0.35);
    --shadow-mouse: 0 18px 55px rgba(0, 0, 0, 0.25);
    --shadow-footer: 0px 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-paper: 0px 4px 15px rgba(0, 0, 0, 0.034);

    /* Glass / backdrops */
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-bg-hover: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.22);

    /* Overlays */
    --overlay-strong: rgba(0, 0, 0, 0.65);
    --overlay-mid: rgba(0, 0, 0, 0.25);
    --overlay-soft: rgba(0, 0, 0, 0.55);

    /* Service card glass */
    --svc-bg: rgba(201, 198, 187, 0.151);
    --svc-icon-bg: rgba(255, 193, 7, 0.12);
    --svc-icon-bg-hover: rgba(255, 196, 20, 0.581);
    --svc-icon-border: rgba(255, 193, 7, 0.18);
    --svc-link-bg: rgba(17, 19, 24, 0.04);

    /* Gradientes suaves */
    --hl-grad-1: rgba(255, 193, 7, 0.85);
    --hl-grad-2: rgba(255, 193, 7, 0.541);
}

/* =========================================================
   BASE
========================================================= */
body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 25px;
    background-color: var(--brand-yellow);
    font-weight: bold;
    color: var(--black);
}

h6 {
    font-weight: bold;
    text-transform: capitalize;
}

/* =========================================================
   UTILITÁRIOS / PADRÕES
========================================================= */
.container-p {
    max-width: 1500px;
    margin: 0 auto;
}

@media (max-width: 1521px) {
    .container-p {
        margin: 0 4rem;
    }
}

.container-nav-p {
    max-width: 1800px;
}

.margin-50-p {
    margin-top: 100px;
    margin-bottom: 50px;
}

.space-between-p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h2-p {
    /* font-weight: 700; */
    font-size: 45px;
    color: var(--white);
}

.home-p {
    display: flex;
    justify-content: center;
    color: var(--white);
}

.sx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 650;
    border: 1px solid transparent;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}

.text-white-p {
    color: var(--white-soft);
}

/* =========================================================
   BOTÕES (Padrões)
========================================================= */

.sx-btn:hover {
    transform: translateY(-1px);
}

.sx-btn--primary {
    background: var(--brand-yellow-2);
    color: #111;
    min-width: 210px;
}

.sx-btn--primary:hover {
    background: var(--brand-gold);
    color: var(--border-black);
    min-width: 210px;
}

.sx-btn--secondary {
    background: var(--gray-100);
    color: #111;
    min-width: 210px;
}

.sx-btn--secondary:hover {
    background: var(--gray-900);
    color: var(--white);
    min-width: 210px;
}

.sx-btn--ghost {
    background: transparent;
    border-color: var(--border-white-soft);
    color: var(--hero-text);
}

.sx-btn--ghost:hover {
    background: rgba(255, 255, 255, .05);
    color: var(--hero-text);
}


/* =========================================================
   BANNER / HERO BASE
========================================================= */
.banner-p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

/* =========================================================
   NAVBAR
========================================================= */
.nav-p {
    padding: auto;
}

.know-m-p {
    background-color: var(--brand-yellow);
    text-transform: capitalize;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 3px;
}

.know-m-p:hover {
    background-color: var(--brand-dark-2);
    color: var(--brand-yellow);
    transition: 0.2s;
}

/* =========================================================
   SERVIÇOS (botão "ler mais")
========================================================= */
.read-m-p {
    cursor: pointer;
    background-color: var(--brand-yellow);
    font-weight: 500;
    text-transform: capitalize;
    border: none;
    border-radius: 3px;
    padding: 4px 15px;
}

.read-m-p:hover {
    background-color: var(--brand-dark-3);
    color: var(--brand-yellow);
    transition: 0.2s;
}

/* =========================================================
   SEÇÃO LIGHT PREMIUM — STORY SERVICES
========================================================= */
.sx-storyServices {
    background: var(--paper);
    color: var(--text);
    padding: 84px 0;
    position: relative;
    overflow: hidden;
}

/* detalhe criativo: manchas editoriais MUITO suaves */
.sx-storyServices::before {
    content: "";
    position: absolute;
    inset: -120px;
    background:
        radial-gradient(700px 420px at 12% 14%, rgba(255, 193, 7, 0.16), transparent 60%),
        radial-gradient(680px 380px at 85% 20%, rgba(120, 85, 255, 0.08), transparent 60%),
        radial-gradient(600px 420px at 65% 90%, rgba(0, 180, 190, 0.06), transparent 60%);
    pointer-events: none;
}

.sx-storyServices__wrap {
    position: relative;
    z-index: 1;
}

.sx-storyServices__head {
    margin-bottom: 28px;
}

.sx-storyServices__kicker {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sx-chip {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgb(255 193 7 / 22%);
    border: 3px solid rgb(255 193 7 / 64%);
    color: rgb(28 27 27);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

/* .sx-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgb(237 188 40 / 95%);
    box-shadow: 0 0 0 6px rgba(255, 193, 7, 0.14);
} */

.sx-chip-w {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(233, 233, 233, 0.606);
    border: 1px solid var(--border-soft-2);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.08em;
}

.sx-dot-w {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(210, 210, 210, 0.95);
    box-shadow: 0 0 0 6px rgba(134, 134, 134, 0.14);
}

.sx-muted {
    color: var(--muted-60);
    font-weight: 700;
    font-size: 13px;
}

.sx-storyServices__title {
    font-size: clamp(30px, 3.2vw, 40px);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 10px 0 10px;
    font-weight: 900;

}

.sx-storyServices__title span {
    color: var(--text-2);
    background: linear-gradient(90deg, var(--hl-grad-1), var(--hl-grad-2));
    padding: 0 0.25em;
    border-radius: 10px;
}

.sx-storyServices__subtitle {
    color: var(--muted-70);
    line-height: 1.7;
    margin: 0 0 16px;
    font-weight: 600;
}

.sx-storyServices__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sx-btnSoft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid var(--border-soft);
    background: var(--glass-bg);
    color: rgba(17, 19, 24, 0.92);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: var(--shadow-svc);
}

.sx-btnSoft:hover {
    transform: translateY(-1px);
    background: var(--glass-bg-hover);
}

.sx-btnSoft--primary {
    background: rgba(255, 193, 7, 0.9);
    border-color: var(--border-yellow-soft);
    color: var(--text);
    box-shadow: var(--shadow-yellow);
}

/* =========================================================
   SERVICE CARDS — PREMIUM LIGHT
========================================================= */
.sx-svcCard {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 270px;
    padding: 22px 35px;
    border-radius: 20px;
    background: var(--svc-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    overflow: hidden;
}

/* glow radial suave no hover */
.sx-svcCard::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 500px at 60% 85%, rgba(255, 193, 7, 0.18), transparent 60%),
        radial-gradient(400px 180px at 85% 25%, rgba(120, 85, 255, 0.12), transparent 60%),
        radial-gradient(900px 500px at 50% 85%, rgba(120, 85, 255, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.sx-svcCard:hover::before {
    opacity: 1;
}

/* TOP AREA */
.sx-svcCard__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sx-svcIcon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--svc-icon-bg);
    border: 1px solid var(--svc-icon-border);
    transition: transform 0.3s ease, background 0.3s ease;
}

.sx-svcCard:hover .sx-svcIcon {
    transform: scale(1.05) rotate(-2deg);
    background: var(--svc-icon-bg-hover);
}

.sx-svcIcon img {
    object-fit: contain;
}

/* TEXT */
.sx-svcBody h6 {
    font-weight: 900;
    font-size: 16px;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.sx-svcBody p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-70);
    margin: 0;
}

/* BOTTOM AREA */
.sx-svcCard__bottom {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    position: relative;
}

.sx-svcCard__bottom::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 36px;
    height: 1px;
    width: 0;
    transition: width 0.35s ease;
}

.sx-svcCard:hover .sx-svcCard__bottom::before {
    width: 100%;
}

.sx-svcLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--svc-link-bg);
    border: 1px solid var(--border-soft-2);
    color: rgba(17, 19, 24, 0.9);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.sx-svcLink span {
    transition: transform 0.25s ease;
}

.sx-svcCard:hover .sx-svcLink {
    background: rgba(255, 196, 20, 0.581);
    border-color: var(--border-yellow-soft-2);
}

.sx-svcCard:hover .sx-svcLink span {
    transform: translateX(4px);
}

/* =========================================================
   HERO HOME / CAROUSEL
========================================================= */
.sx-hero {
    color: var(--sx-text);
    /* mantém compatível com teu setup */
    padding: 120px 0 60px;
    position: relative;
}

.sx-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

@media (max-width: 992px) {
    .sx-hero__grid {
        grid-template-columns: 1fr;
    }
}

.sx-badge {
    display: inline-block;
    padding: 8px 12px;
    border: 3px solid var(--brand-yewlow-soft);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-yellow-2);
    margin-bottom: 14px;
}

.sx-badge-dark {
   display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.341);
    border: 3px solid rgba(101, 101, 101, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.04em;
}

.sx-hero h1 {
    font-size: 46px;
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

@media (max-width: 600px) {
    .sx-hero h1 {
        font-size: 34px;
    }
}

.sx-hero p {
    color: var(--sx-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 22px;
}

.sx-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.sx-heroHome {
    position: relative;
    background-color: var(--hero-bg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.sx-heroHome::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(1200px 650px at 18% 10%, rgb(255 193 7 / 18%), transparent 60%),
        radial-gradient(900px 500px at 84% 22%, rgb(0 183 177 / 15%), transparent 60%),
        radial-gradient(1100px 560px at 50% 108%, rgb(252 185 0 / 12%), #000000 62%),
        radial-gradient(850px 480px at 68% 82%, rgb(6 87 116 / 10%), transparent 60%),
        linear-gradient(180deg, #0a0d10 0%, #11161b 42%, #000000 100%);
}

.sx-heroHome::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.015), rgba(0,0,0,0.18));
}

.sx-splineBg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sx-splineBg iframe,
.sx-splineBg hana-viewer {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    transform: scale(1.06);
}

.sx-heroHome>* {
    position: relative;
    z-index: 2;
}

/* =========================================================
   HERO SCROLL CUE — PREMIUM
========================================================= */

.sx-scrollCue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 8;
    user-select: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        visibility 0.45s ease;
}

.sx-scrollCue.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.sx-scrollCue.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
}

.sx-scrollCue:hover {
    transform: translateX(-50%) translateY(-2px);
}

.sx-scrollLabel {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(233, 236, 245, 0.62);
    transition: color 0.3s ease;
}

.sx-scrollCue:hover .sx-scrollLabel {
    color: rgba(233, 236, 245, 0.88);
}

.sx-mouse {
    position: relative;
    width: 30px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sx-mouse::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid rgba(233, 236, 245, 0.42);
    border-bottom: 1.5px solid rgba(233, 236, 245, 0.42);
    transform: translateX(-50%) rotate(45deg);
    animation: sx-scrollArrow 1.8s ease-in-out infinite;
}

.sx-mouseDot {
    position: absolute;
    left: 50%;
    top: 9px;
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(255, 193, 7, 0.95),
        rgba(255, 193, 7, 0.55)
    );
    transform: translateX(-50%);
    animation: sx-scrollDot 1.8s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.28);
}

@keyframes sx-scrollDot {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.95;
    }
    55% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.25;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.95;
    }
}

@keyframes sx-scrollArrow {
    0% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
        opacity: 0.55;
    }
    55% {
        transform: translateX(-50%) translateY(5px) rotate(45deg);
        opacity: 0.18;
    }
    100% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
        opacity: 0.55;
    }
}

@media (max-width: 768px) {
    .sx-scrollCue {
        bottom: 18px;
    }

    .sx-scrollLabel {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sx-mouseDot,
    .sx-mouse::after,
    .sx-scrollCue {
        animation: none !important;
        transition: none !important;
    }
}

/* Carousel palco */
.sx-carousel {
    width: 100%;
}

.sx-carousel__wrap {
    position: relative;
    width: 100%;
    min-height: calc(80vh - 90px);
}

.sx-carousel__inner {
    width: 100%;
    padding-left: 70px;
}

@media (max-width: 768px) {
    .sx-carousel__inner {
        padding-left: 0;
    }
}

/* Indicadores */
.sx-indicators {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    z-index: 3;
}

.sx-indicators [data-bs-target] {
    width: 8px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.22);
    border: 1px solid rgba(255, 193, 7, 0.45);
    transition: all 0.22s ease;
}

.sx-indicators .active {
    height: 40px;
    background: rgba(255, 193, 7, 0.85);
    box-shadow: 0 0 0 6px rgba(255, 193, 7, 0.14);
}

@media (max-width: 768px) {
    .sx-indicators {
        left: 50%;
        top: auto;
        bottom: 14px;
        transform: translateX(-50%);
        flex-direction: row;
    }

    .sx-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }

    .sx-indicators .active {
        width: 26px;
        height: 10px;
    }
}

/* Fade do carousel */
.carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.7s ease;
}

.carousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Micro zoom */
.sx-carousel .carousel-item .row {
    transform: scale(0.985);
    filter: blur(0px);
    transition: transform 0.8s ease;
}

.sx-carousel .carousel-item.active .row {
    transform: scale(1);
}

/* Entrada do texto */
.sx-carousel .text-content .sx-badge,
.sx-carousel .text-content h2,
.sx-carousel .text-content p,
.sx-carousel .text-content .sx-hero__ctas {
    opacity: 0;
    transform: translateY(10px);
}

.sx-carousel .carousel-item.is-animating .text-content .sx-badge {
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: 0.05s;
    opacity: 1;
    transform: translateY(0);
}

.sx-carousel .carousel-item.is-animating .text-content h2 {
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.12s;
    opacity: 1;
    transform: translateY(0);
}

.sx-carousel .carousel-item.is-animating .text-content p {
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.sx-carousel .carousel-item.is-animating .text-content .sx-hero__ctas {
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.28s;
    opacity: 1;
    transform: translateY(0);
}

/* Entrada da imagem */
.sx-carousel .sx-slideImage {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sx-carousel .carousel-item.is-animating .sx-slideImage {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {

    .sx-carousel .carousel-item,
    .sx-carousel .carousel-item .row,
    .sx-carousel .text-content *,
    .sx-carousel .sx-slideImage {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Painel de texto “glass” */
.sx-textPanel {
    max-width: 560px;
    background: var(--panel-bg);
    border: 1px solid var(--border-white-soft);
    border-radius: 18px;
    padding: 22px 22px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-panel);
}

.sx-textPanel h2 {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.sx-textPanel p {
    color: var(--hero-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .sx-textPanel h2 {
        font-size: 32px;
    }
}

/* mantém teu amarelo, só refinando */
.highlight-text {
    color: var(--brand-yellow-2);
}

.sx-btnHero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--brand-yellow-2);
    color: var(--text);
    font-weight: 750;
    text-decoration: none;
    border: 1px solid rgba(255, 193, 7, 0.28);
    transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.sx-btnHero:hover {
    transform: translateY(-1px);
    filter: brightness(0.98);
}

.sx-imageCol {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sx-slideImage {
    max-width: 850px;
    width: 100%;
    border-radius: 18px;
}

@media (max-width: 768px) {
    .sx-imageCol {
        display: none;
    }

    .sx-slideImage {
        max-width: 420px;
    }
}

/* =========================================================
   MOSAICO
========================================================= */
.grid-p {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    padding: 10px;
    background-color: var(--gray-500);
    max-height: 940px;
    overflow: hidden;
}

.item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #faf9f9;
    /* mantive (é um off-white específico) */
    overflow: hidden;
    color: var(--accent-orange);
}

.item img {
    height: 300px;
    width: auto;
}

@media (min-width: 1868px) {
    .grid-p {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        padding: 0 5%;
    }
}

@media (max-width: 968px) {
    .grid-p {
        grid-template-columns: repeat(auto-fill, minmax(230px, 5fr));
        grid-auto-rows: 230px;
        max-height: 1200px;
    }

    .item img {
        height: 230px;
    }
}

@media (max-width: 768px) {
    .grid-p {
        grid-template-columns: repeat(auto-fill, minmax(180px, 5fr));
        grid-auto-rows: 180px;
        max-height: 1150px;
    }

    .item img {
        height: 180px;
    }
}

@media (max-width: 490px) {
    .grid-p {
        grid-template-columns: repeat(auto-fill, minmax(100px, 3fr));
        grid-auto-rows: 100px;
    }

    .item img {
        height: 100px;
    }
}


/* =========================================================
   SERVIÇOS EM CARROSSEL
========================================================= */

.service-slider {
    position: relative;
    margin-top: 42px;
    padding-bottom: 56px;
    overflow: hidden;
}

.service-slider .swiper-slide {
    height: auto;
    display: flex;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 360px;
    padding: 28px;
    border-radius: 28px;
    overflow: hidden;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.96) 100%);
    border: 1px solid rgba(17, 19, 24, 0.08);
    box-shadow: 0 18px 48px rgba(17, 19, 24, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.25);
    box-shadow: 0 24px 60px rgba(17, 19, 24, 0.10);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(420px 220px at 0% 0%, rgba(255, 193, 7, 0.10), transparent 60%);
    pointer-events: none;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-media {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;

    background: linear-gradient(180deg, rgba(255, 193, 7, 0.14), rgba(255, 193, 7, 0.08));
    border: 1px solid rgba(255, 193, 7, 0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.service-media i {
    font-size: 1.5rem;
    line-height: 1;
    color: #111318;
}

.service-title {
    position: relative;
    z-index: 1;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.25;
    color: #111318;
    margin-bottom: 14px;
    max-width: 90%;
}

.service-bgword {
    position: absolute;
    right: 18px;
    bottom: 18px;
    font-size: 3.3rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.04em;
    color: rgba(17, 19, 24, 0.05);
    pointer-events: none;
    user-select: none;
}

.service-detail-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.service-detail-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: #f3f4f6;
    border: 1px solid rgba(17, 19, 24, 0.05);
    font-size: 0.76rem;
    font-weight: 700;
    color: #4b5563;
}

.service-text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 95%;
}

.service-btn {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 12px;
    background: #111318;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.service-btn:hover {
    background: var(--brand-yellow-2);
    color: #111318;
    transform: translateY(-1px);
}

.service-pagination {
    bottom: 0 !important;
}

.service-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    opacity: 1;
    background: rgba(17, 19, 24, 0.18);
    transition: all 0.3s ease;
}

.service-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: var(--brand-yellow-2);
}

/* Responsivo */
@media (max-width: 991px) {
    .service-card {
        min-height: 340px;
        padding: 24px;
    }

    .service-title {
        font-size: 1.2rem;
        max-width: 100%;
    }

    .service-bgword {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .service-slider {
        padding-bottom: 46px;
    }

    .service-card {
        min-height: 320px;
        border-radius: 22px;
        padding: 22px;
    }

    .service-media {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    .service-media i {
        font-size: 1.3rem;
    }

    .service-title {
        font-size: 1.08rem;
    }

    .service-text {
        font-size: 0.9rem;
    }

    .service-bgword {
        font-size: 2.2rem;
        right: 14px;
        bottom: 14px;
    }
}

/* =========================================================
   GALERIA
========================================================= */

.gallery-section-p {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* grade com imagens no fundo */
.gallery-grid-bg {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-item {
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* camada escura para destacar o texto */
.gallery-overlay-p {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.826);
    z-index: 2;
}

/* texto acima de tudo */
.gallery-text-p {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.p-galeria-p {
    color: var(--white);
}

.h2-p {
    color: var(--white);
}

/* tablet */
@media (max-width: 992px) {
    .gallery-section-p {
        min-height: 70vh;
    }

    .gallery-grid-bg {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* celular */
@media (max-width: 490px) {
    .gallery-section-p {
        min-height: 60vh;
    }

    .gallery-grid-bg {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-text-p {
        padding: 16px;
    }

    .h2-p {
        font-size: 2rem;
        line-height: 1.2;
    }

    .p-galeria-p {
        font-size: 0.95rem;
    }
}

/* =========================================================
   PLANOS
========================================================= */

.plans-container-p {
    background: #f7f7f8;
}

.plans-header-p {
    margin-bottom: 48px;
}

.plans-tag-p {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.12);
    color: #d39b00;
    font-size: 0.9rem;
    font-weight: 600;
}

.plans-section-p {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

/* CARD */
.plans-card-p {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    min-height: 600px; /* altura base igual para todos */
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    overflow: hidden;
}

.plans-card-p:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 193, 7, 0.643);
}

.featured-plan-p {
    border: 3px solid #f4c400;
    box-shadow: 0 18px 40px rgba(244, 196, 0, 0.12);
}

.featured-badge-p {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f4c400;
    color: #1d1d1d;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.plans-card-top-p {
    flex-shrink: 0;
}

.plans-card-top-p h3 {
    font-size: 1.7rem;
    margin-bottom: 14px;
    color: #1d1d1d;
}

.plan-description-p {
    margin: 0 0 24px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #6b7280;
}

/* LISTA */
.service-plans-p {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1 1 auto;
    /* min-height: 30px; */
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

/* quando expandir, só a lista cresce internamente */
.plans-card-p.is-expanded .service-plans-p {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
}

/* scrollbar bonitinha */
.plans-card-p.is-expanded .service-plans-p::-webkit-scrollbar {
    width: 6px;
}

.plans-card-p.is-expanded .service-plans-p::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.16);
    border-radius: 999px;
}

.plans-card-p.is-expanded .service-plans-p::-webkit-scrollbar-track {
    background: transparent;
}

.service-plans-p li {
    position: relative;
    padding-left: 22px;
    color: #1f2937;
    line-height: 1.6;
    font-size: 0.97rem;
}

.service-plans-p li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f4c400;
}

.service-item-p {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.is-hidden-service-p {
    display: none;
}

/* BOTÃO VER MAIS */
.toggle-services-btn-p {
    margin-top: 0;
    margin-bottom: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: underline;
    cursor: pointer;
    color: var(--text);
    align-self: flex-start;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.toggle-services-btn-p:hover {
    opacity: 0.75;
}

/* FOOTER */
.plans-card-footer-p {
    flex-shrink: 0;
}

.plan-btn-p {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid #1d1d1d;
    text-decoration: none;
    color: #1d1d1d;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-btn-p:hover {
    background: #1d1d1d;
    color: #fff;
}

.plan-btn-featured-p {
    background: #f4c400;
    border-color: #f4c400;
    color: #1d1d1d;
}

.plan-btn-featured-p:hover {
    background: var(--border-black);
    border-color: var(--border-black);
    color: #fff;
}

.personalized-plan-p {
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.p-planos-p {
    margin-top: 28px;
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
}

/* RESPONSIVO */
@media (max-width: 1400px) {
    .plans-section-p {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1200px) {
    .plans-section-p {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plans-card-p {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .plans-section-p {
        grid-template-columns: 1fr;
    }

    .plans-card-p {
        min-height: auto;
        padding: 24px;
    }

    .service-plans-p {
        min-height: auto;
        max-height: 260px;
    }

    .plans-card-p.is-expanded .service-plans-p {
        max-height: 360px;
    }

    .plans-header-p {
        margin-bottom: 32px;
    }

    .plans-header-p h2 {
        font-size: 2rem;
    }
}

/* =========================================================
   CONTATO
========================================================= */
.contact-feedback-p {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-feedback-p.loading {
    color: #aaa;
}

.contact-feedback-p.success {
    color: #00b7b1;
}

.contact-feedback-p.error {
    color: #ff4d4f;
}

.contact-section-p {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(239, 239, 239, 0.08), transparent 30%),
        radial-gradient(1200px 650px at 20% 10%, rgba(255, 193, 7, 0.407), transparent 60%),
        radial-gradient(900px 500px at 85% 25%, rgba(233, 231, 231, 0.12), transparent 60%),
        radial-gradient(900px 500px at 50% 85%, rgba(32, 17, 17, 0.12), transparent 60%),
        radial-gradient(900px 500px at 60% 85%, rgba(255, 193, 7, 0.477), transparent 60%);
}

.contact-header-p {
    margin: 0 auto 40px;
    text-align: center;
}

.contact-tag-p {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.14);
    color: #c99700;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-header-p p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6b7280;
}

.contact-card-p {
    max-width: 660px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.contact-form-p {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group-p {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-p label {
    font-size: 0.98rem;
    font-weight: 600;
    color: #1d1d1d;
}

.form-group-p input,
.form-group-p textarea {
    width: 100%;
    border: 1px solid #dcdfe4;
    border-radius: 16px;
    background: #f9fafb;
    padding: 16px 18px;
    font-size: 1rem;
    color: #1d1d1d;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-group-p input::placeholder,
.form-group-p textarea::placeholder {
    color: #9ca3af;
}

.form-group-p input:focus,
.form-group-p textarea:focus {
    border-color: #f4c400;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(244, 196, 0, 0.14);
}

.form-group-p textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-actions-p {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.contact-btn-p {
    min-width: 220px;
    min-height: 54px;
    border: none;
    border-radius: 14px;
    background: #111318;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-btn-p:hover {
    background: var(--brand-yellow-2);
    color: #111318;
    transform: translateY(-1px);
}

/* responsivo */
@media (max-width: 768px) {
    .contact-section-p {
        padding: 70px 0;
    }

    .contact-card-p {
        padding: 24px;
        border-radius: 22px;
    }

    .contact-header-p {
        margin-bottom: 28px;
    }

    .contact-header-p h2 {
        font-size: 2rem;
    }

    .contact-header-p p {
        font-size: 0.98rem;
    }

    .contact-btn-p {
        width: 100%;
    }
}


/* =========================================================
   FUNDADORES — DARK GLASS PREMIUM
========================================================= */

.founders-section-p {
    position: relative;
    padding: 95px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(1200px 650px at 20% 10%, rgb(255 193 7 / 16%), transparent 60%), radial-gradient(900px 500px at 85% 25%, rgb(0 183 177 / 22%), #06577400 60%), radial-gradient(900px 500px at 50% 115%, #372a05, #000000 60%), radial-gradient(900px 500px at 60% 85%, rgb(255 193 7 / 18%), transparent 60%), linear-gradient(180deg, var(--overlay-soft), var(--overlay-mid) 45%, var(--overlay-soft));
    user-select: none;
}

.founders-section-p::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.22));
    pointer-events: none;
}

.founders-section-p .container {
    position: relative;
    z-index: 1;
}

.founders-header-p {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}



.founders-subtitle-p {
    margin: 0;
    max-width: 760px;
    color: rgba(233, 236, 245, 0.72);
    line-height: 1.8;
    font-size: 1rem;
}

.founders-cta-p {
    flex-shrink: 0;
}

.founders-grid-p {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.founder-card-p {
    position: relative;
    display: flex;
    height: 350px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.founder-card-p::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 240px at 15% 0%, rgba(255, 193, 7, 0.10), transparent 55%),
        radial-gradient(500px 220px at 100% 100%, rgba(120, 85, 255, 0.10), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.founder-card-p:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.30);
    border-color: rgba(255, 193, 7, 0.24);
    background: rgba(255, 255, 255, 0.06);
}

.founder-card-p:hover::before {
    opacity: 1;
}

.founder-card-line-p {
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(255, 193, 7, 0.95),
            rgba(255, 193, 7, 0.20),
            rgba(120, 85, 255, 0.35));
    z-index: 2;
}

.founder-image-wrap-p {
    position: relative;
    height: auto;
    width: 550px;
    overflow: hidden;
    background: #171a20;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.founder-image-wrap-p::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.28) 100%);
    pointer-events: none;
}

.founder-image-wrap-p::before {
    content: "INCEPT";
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 12px;
    opacity: 0.15;
    color: #fff;
    pointer-events: none;
}

.founder-p {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* transition: transform 0.6s ease, filter 0.35s ease; */
    /* filter: blur(2px); */
    transition: filter 0.4s ease;
}

.founder-image-blocker-p {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: transparent;
    cursor: default;
}

.founder-card-p:hover .founder-p {
    transform: scale(1.045);
    filter: saturate(1.03) contrast(1.03);
    /* filter: blur(0); */
}

.founder-content-p {
    position: relative;
    z-index: 1;
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.founder-meta-p {
    margin-bottom: 12px;
}

.founder-role-p {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(233, 236, 245, 0.82);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

.founder-card-p:hover .founder-role-p {
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.18);
    color: #ffd24d;
}

.founder-content-p h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.9rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.founder-card-p:hover .founder-content-p h3 {
    transform: translateY(-2px);
}

.founder-text-p {
    margin: 0;
    color: rgba(233, 236, 245, 0.70);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 92%;
}

.founder-hover-footer-p {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    opacity: 0.92;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.founder-card-p:hover .founder-hover-footer-p {
    transform: translateY(-2px);
    opacity: 1;
}

.founder-mini-tag-p {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 19, 24, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(233, 236, 245, 0.78);
    font-size: 0.8rem;
    font-weight: 700;
}

/* responsivo */
@media (max-width: 992px) {
    .founders-grid-p {
        grid-template-columns: 1fr;
    }

    .founder-image-wrap-p {
        height: 390px;
    }
}

@media (max-width: 768px) {
    .founders-section-p {
        padding: 72px 0 82px;
    }

    .founders-header-p {
        margin-bottom: 30px;
    }

    .founders-cta-p {
        width: 100%;
    }

    .founder-image-wrap-p {
        height: 320px;
    }

    .founder-content-p {
        padding: 22px;
    }

    .founder-content-p h3 {
        font-size: 1.55rem;
    }

    .founder-text-p {
        max-width: 100%;
    }

    .founder-card-line-p {
        left: 22px;
        right: 22px;
    }
}

/* =========================================================
   FOOTER — REFINED / DISCRETO / PREMIUM
========================================================= */

.footer-refined-p {
    position: relative;
    overflow: hidden;
    padding: 88px 0 28px;
    background:
        radial-gradient(1000px 580px at 15% 8%, rgb(255 193 7 / 12%), transparent 62%),
        radial-gradient(780px 430px at 85% 20%, rgb(0 183 177 / 14%), transparent 60%),
        radial-gradient(950px 500px at 50% 118%, rgb(252 185 0 / 9%), #000000 62%),
        radial-gradient(850px 480px at 68% 82%, rgb(6 87 116 / 15%), transparent 60%),
        linear-gradient(180deg, #071018 0%, #081720 45%, #000000 100%);
}

.footer-refined-p::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.015), rgba(0,0,0,0.22));
    pointer-events: none;
}

.footer-refined-p .footer-shell-p {
    position: relative;
    z-index: 1;
}

.footer-refined-p .footer-top-p {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 2fr);
    gap: 42px;
    align-items: start;
}

.footer-refined-p .footer-brand-refined-p {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 10px;
}

.footer-refined-p .footer-brand-bar-p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 14px 38px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px);
}

.footer-refined-p .footer-brand-logo-p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 0;
}

.footer-refined-p .footer-logo-icon-p {
    height: 30px;
    width: auto;
    flex-shrink: 0;
    filter:
        drop-shadow(0 8px 18px rgba(0,0,0,0.28))
        drop-shadow(0 0 14px rgba(255,193,7,0.06));
}

.footer-refined-p .footer-logo-name-p {
    height: 40px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.20));
}

.footer-refined-p .footer-brand-text-p {
    margin: 0;
    color: rgba(233, 236, 245, 0.78);
    font-size: 0.98rem;
    line-height: 1.85;
    font-weight: 500;
    max-width: 360px;
}

.footer-refined-p .footer-quote-p {
    position: relative;
    padding-left: 16px;
    font-style: italic;
}

.footer-refined-p .footer-quote-p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 3px;
    height: calc(100% - 14px);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,193,7,0.95), rgba(0,183,177,0.40));
}

.footer-refined-p .footer-quote-p::after {
    content: none;
}

.footer-refined-p .footer-brand-meta-p {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-refined-p .footer-brand-meta-p span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    color: rgba(233,236,245,0.66);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
}

.footer-refined-p .footer-social-p {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.footer-refined-p .footer-social-p a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-refined-p .footer-social-p a:hover {
    transform: translateY(-3px);
    color: #ffd24d;
    background: rgba(255,193,7,0.09);
    border-color: rgba(255,193,7,0.18);
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.footer-refined-p .footer-links-wrap-p {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.footer-refined-p .footer-col-p {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-refined-p .footer-title-p {
    position: relative;
    display: inline-block;
    width: fit-content;
    margin-bottom: 18px;
    padding-bottom: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-refined-p .footer-title-p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, rgba(244,196,0,0.9), rgba(255,255,255,0.08));
}

.footer-refined-p .footer-col-p ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-refined-p .footer-col-p ul li {
    margin-bottom: 12px;
}

.footer-refined-p .footer-col-p ul li a {
    color: rgba(233,236,245,0.68);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.65;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-refined-p .footer-col-p ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-refined-p .footer-contact-link-p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-refined-p .footer-contact-link-p i {
    color: #f4c400;
    margin-top: 3px;
    font-size: 0.92rem;
}

.footer-refined-p .footer-contact-link-p span {
    word-break: break-word;
}

.footer-refined-p .footer-cta-p {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    min-height: 48px;
    padding: 0 18px;
    margin-top: 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f4c400 0%, #ffd95a 100%);
    color: #111827;
    text-decoration: none;
    font-weight: 800;
    box-shadow:
        0 12px 24px rgba(244,196,0,0.16),
        inset 0 1px 0 rgba(255,255,255,0.28);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.footer-refined-p .footer-cta-p:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
    color: #111827;
    box-shadow:
        0 16px 28px rgba(244,196,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.28);
}

.footer-refined-p .footer-bottom-p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 24px;
    margin-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-refined-p .footer-bottom-p p {
    margin: 0;
    color: rgba(233,236,245,0.5);
    font-size: 0.9rem;
}

.footer-refined-p .footer-bottom-links-p {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-refined-p .footer-bottom-links-p a {
    color: rgba(233,236,245,0.56);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

.footer-refined-p .footer-bottom-links-p a:hover {
    color: #ffffff;
}

@media (max-width: 1200px) {
    .footer-refined-p .footer-top-p {
        grid-template-columns: 1fr;
    }

    .footer-refined-p .footer-links-wrap-p {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .footer-refined-p {
        padding: 70px 0 24px;
    }

    .footer-refined-p .footer-brand-bar-p {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-refined-p .footer-brand-logo-p {
        align-items: flex-start;
    }

    .footer-refined-p .footer-links-wrap-p {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-refined-p .footer-logo-icon-p {
        height: 48px;
    }

    .footer-refined-p .footer-logo-name-p {
        height: 30px;
    }

    .footer-refined-p .footer-bottom-p {
        padding-top: 20px;
        margin-top: 22px;
    }
}
