:root {
    --font-body: 'Inter', sans-serif;
    --font-display: 'Sora', sans-serif;
    --verde-principal: #7AC143;
    --verde-claro: #A8E06E;
    --verde-escuro: #4B8E24;
    --azul-950: #07111F;
    --azul-900: #0B1830;
    --azul-800: #17335F;
    --azul-700: #24457D;
    --branco: #FFFFFF;
    --fundo: #F4F7FB;
    --fundo-alt: #EAF0F8;
    --texto: #0E1728;
    --texto-suave: #5D6679;
    --linha: rgba(14, 23, 40, 0.1);
    --linha-forte: rgba(255, 255, 255, 0.14);
    --surface: #FFFFFF;
    --surface-soft: rgba(255, 255, 255, 0.7);
    --surface-dark: rgba(11, 24, 48, 0.88);
    --shadow-lg: 0 28px 72px rgba(7, 17, 31, 0.16);
    --shadow-card: 0 18px 40px rgba(7, 17, 31, 0.08);
    --radius-xl: 26px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --transition: 240ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(122, 193, 67, 0.05), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
    color: var(--texto);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: 0;
    pointer-events: none;
    filter: blur(90px);
    opacity: 0.32;
}

body::before {
    top: -120px;
    left: -140px;
    width: 320px;
    height: 320px;
    background: rgba(122, 193, 67, 0.14);
}

body::after {
    right: -120px;
    bottom: 10%;
    width: 280px;
    height: 280px;
    background: rgba(11, 24, 48, 0.08);
}

main,
section,
aside,
footer,
header,
nav {
    display: block;
    position: relative;
    z-index: 1;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--texto);
    font-family: var(--font-display);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

p {
    margin: 0;
    color: var(--texto-suave);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

[id] {
    scroll-margin-top: 110px;
}

[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

:focus-visible {
    outline: 3px solid rgba(122, 193, 67, 0.45);
    outline-offset: 4px;
}

.skip-link {
    position: absolute;
    top: -72px;
    left: 16px;
    z-index: 2000;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--azul-950);
    color: var(--branco);
    font-weight: 700;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 12px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ponto-verde {
    color: currentColor;
}

.section {
    padding: 6rem 5%;
}

.section-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.75rem;
}

.section-head.centered {
    max-width: 760px;
    margin: 0 auto 2.75rem;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

.hero-shell > *,
.contact-grid > *,
.section-head > * {
    min-width: 0;
}

.eyebrow,
.card-kicker,
.mini-kicker {
    display: inline-block;
    width: fit-content;
    padding: 0;
    border: 0;
    background: none;
    color: var(--azul-800);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.4;
}

.section-title {
    max-width: 680px;
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.section-copy {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 52px;
    padding: 0.9rem 1.3rem;
    border: 1px solid transparent;
    border-radius: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition);
    cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--verde-principal);
    color: var(--azul-950);
    box-shadow: 0 14px 26px rgba(122, 193, 67, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--verde-escuro);
    color: var(--branco);
    box-shadow: 0 18px 32px rgba(122, 193, 67, 0.22);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: var(--branco);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
    background: var(--azul-950);
    color: var(--branco);
    box-shadow: 0 14px 30px rgba(7, 17, 31, 0.16);
}

.btn-dark:hover,
.btn-dark:focus-visible {
    background: var(--azul-800);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
    background: rgba(7, 17, 31, 0.97);
    box-shadow: 0 18px 40px rgba(7, 17, 31, 0.22);
}

.site-nav {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 5%;
    transition: color var(--transition);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.logo img {
    height: 54px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.08);
}

.logo-copy {
    color: var(--branco);
    font-family: var(--font-display);
    font-size: 1.72rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
    font-weight: 600;
}

.nav-links a,
.dropbtn {
    transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.dropdown:hover .dropbtn,
.dropdown:focus-within .dropbtn {
    color: var(--verde-claro);
}

.nav-cta {
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(122, 193, 67, 0.45);
    border-radius: 14px;
    background: rgba(122, 193, 67, 0.14);
    box-shadow: 0 10px 24px rgba(122, 193, 67, 0.12);
    padding: 0.5rem;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--verde-claro);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-label {
    color: var(--verde-claro);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.dropdown {
    position: relative;
}

.dropbtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 240px;
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(9, 18, 33, 0.98);
    box-shadow: 0 18px 40px rgba(7, 17, 31, 0.24);
    display: none;
}

.dropdown-content a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.84);
}

.dropdown-content a:hover,
.dropdown-content a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--verde-claro);
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        display: block;
        animation: menuFade 220ms ease;
    }
}

@keyframes menuFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    padding: 7.5rem 5% 4.5rem;
    color: var(--branco);
    overflow: clip;
}

.hero-home,
.hero-sector {
    background:
        radial-gradient(circle at 15% 10%, rgba(122, 193, 67, 0.14), transparent 26%),
        radial-gradient(circle at 88% 12%, rgba(36, 69, 125, 0.24), transparent 34%),
        linear-gradient(180deg, #0A1324 0%, #0D192F 58%, #101D36 100%);
}

.page-imobiliario .hero-sector {
    background:
        radial-gradient(circle at 16% 10%, rgba(122, 193, 67, 0.12), transparent 24%),
        radial-gradient(circle at 84% 10%, rgba(36, 69, 125, 0.28), transparent 34%),
        linear-gradient(180deg, #0A1325 0%, #0D1B33 52%, #10213D 100%);
}

.page-funerario .hero-sector {
    background:
        radial-gradient(circle at 14% 8%, rgba(122, 193, 67, 0.16), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(36, 69, 125, 0.22), transparent 34%),
        linear-gradient(180deg, #091220 0%, #0C182C 50%, #112038 100%);
}

.hero-home::before,
.hero-home::after,
.hero-sector::before,
.hero-sector::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0.36;
}

.hero-home::before,
.hero-sector::before {
    inset: auto auto 9% -3%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(122, 193, 67, 0.4), transparent 70%);
    filter: blur(24px);
}

.hero-home::after,
.hero-sector::after {
    inset: 10% -4% auto auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(36, 69, 125, 0.5), transparent 68%);
    filter: blur(26px);
}

.hero-shell {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

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

.hero-title {
    max-width: 13ch;
    margin-top: 1.2rem;
    font-size: clamp(2.8rem, 6.2vw, 5.3rem);
    color: var(--branco);
    line-height: 0.98;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.hero-copy {
    max-width: 39rem;
    margin-top: 1.1rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.72;
    overflow-wrap: anywhere;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.proof-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.72rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -5% auto auto 8%;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 193, 67, 0.12), transparent 70%);
    filter: blur(14px);
    pointer-events: none;
}

.dashboard {
    position: relative;
    padding: 1.55rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(11, 24, 48, 0.98), rgba(14, 28, 53, 0.98));
    box-shadow: 0 28px 56px rgba(7, 17, 31, 0.32);
}

.dashboard::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 193, 67, 0.16), transparent 70%);
    filter: blur(18px);
    pointer-events: none;
}

.dashboard-head,
.board-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.3rem;
}

.dashboard-head strong,
.board-head strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--branco);
    font-family: var(--font-display);
    font-size: 1.12rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
}

.dashboard-kicker,
.board-kicker {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dashboard-status,
.board-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(122, 193, 67, 0.16);
    color: var(--verde-claro);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.dashboard-grid,
.board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.dashboard-card,
.board-card {
    min-height: 126px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.dashboard-label,
.board-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--branco);
    font-weight: 700;
}

.dashboard-card p,
.board-card p {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.96rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.dashboard-rail,
.board-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.dashboard-rail span,
.board-rail span {
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    font-weight: 600;
}

.signal-band {
    padding: 1rem 5% 1.5rem;
    margin-top: -0.8rem;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.signal-grid article {
    padding: 1.3rem 1.35rem;
    border: 1px solid rgba(14, 23, 40, 0.06);
    border-top: 3px solid rgba(122, 193, 67, 0.5);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
}

.signal-grid strong {
    display: block;
    color: var(--texto);
    font-family: var(--font-display);
    font-size: 1rem;
}

.signal-grid span {
    display: block;
    margin-top: 0.35rem;
    color: var(--texto-suave);
    font-size: 0.96rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.comparison-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.comparison-card h3 {
    margin-top: 1rem;
    font-size: 1.75rem;
}

.comparison-card-problem {
    background: linear-gradient(180deg, #FFF4F3 0%, #FFF8F6 100%);
    border: 1px solid rgba(190, 60, 42, 0.12);
}

.comparison-card-solution {
    background: linear-gradient(180deg, #F0FAE8 0%, #F7FCEB 100%);
    border: 1px solid rgba(122, 193, 67, 0.18);
}

.check-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.check-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 0.8rem;
    align-items: start;
    color: var(--texto);
    font-weight: 600;
}

.check-list li::before {
    content: "";
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-claro));
    box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.82);
}

.check-list-muted li::before {
    background: linear-gradient(135deg, #DE7C6D, #F1B6AD);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.duo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.value-grid,
.stack-grid {
    display: grid;
    gap: 1rem;
}

.value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stack-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.value-card,
.sector-card,
.pain-card,
.process-step,
.faq-item,
.contact-card,
.metric-card {
    border: 1px solid rgba(14, 23, 40, 0.06);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
    box-shadow: var(--shadow-card);
}

.value-card {
    padding: 1.4rem;
}

.feature-card {
    padding: 1.5rem;
}

.icon-shell,
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(14, 23, 40, 0.06);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(122, 193, 67, 0.18), rgba(36, 69, 125, 0.18));
    color: var(--azul-900);
}

.icon-shell svg,
.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3,
.value-card h3,
.sector-card h3,
.pain-card h3,
.process-step h3,
.contact-card h3,
.metric-card h3 {
    margin-top: 1rem;
    font-size: 1.18rem;
}

.feature-card p,
.value-card p,
.sector-card p,
.pain-card p,
.process-step p,
.contact-card p,
.metric-card p {
    margin-top: 0.72rem;
    font-size: 0.98rem;
    line-height: 1.68;
    overflow-wrap: anywhere;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.sector-card {
    display: flex;
    flex-direction: column;
    padding: 1.6rem;
}

.sector-card .btn {
    margin-top: auto;
}

.sector-list,
.benefit-list {
    display: grid;
    gap: 0.7rem;
    margin: 1rem 0 1.4rem;
}

.sector-list li,
.benefit-list li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--texto-suave);
}

.sector-list li::before,
.benefit-list li::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--verde-principal);
}

.section-dark {
    color: var(--branco);
    background:
        radial-gradient(circle at top left, rgba(122, 193, 67, 0.1), transparent 22%),
        radial-gradient(circle at 90% 15%, rgba(36, 69, 125, 0.24), transparent 28%),
        linear-gradient(180deg, #0A1426 0%, #0D1A30 100%);
}

.section-dark .section-title,
.section-dark .section-copy,
.section-dark h3 {
    color: var(--branco);
}

.section-dark .section-copy,
.section-dark p,
.section-dark li {
    color: rgba(255, 255, 255, 0.74);
}

.section-dark .metric-card,
.section-dark .value-card {
    background: rgba(255, 255, 255, 0.92);
}

.section-dark .metric-card h3,
.section-dark .metric-card p,
.section-dark .value-card h3,
.section-dark .value-card p {
    color: var(--texto);
}

.showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.5rem;
    align-items: center;
}

.showcase-panel {
    padding: 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 26px 60px rgba(7, 17, 31, 0.26);
}

.board-card {
    min-height: 150px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    counter-reset: method;
}

.process-step {
    position: relative;
    padding: 1.5rem;
    overflow: hidden;
}

.process-step::before {
    counter-increment: method;
    content: "0" counter(method);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-claro));
    color: var(--azul-950);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 0 1.4rem;
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 2.4rem 1.25rem 0;
    color: var(--texto);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--verde-principal);
    font-size: 1.7rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding-bottom: 1.25rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.contact-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(122, 193, 67, 0.18), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(36, 69, 125, 0.32), transparent 26%),
        linear-gradient(180deg, #08111F 0%, #0D1730 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-copy .section-title,
.contact-copy .section-copy,
.contact-copy p,
.contact-copy h3 {
    color: var(--branco);
}

.contact-copy .eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.contact-copy .section-copy,
.contact-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-cards {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.contact-card {
    padding: 1.2rem 1.3rem;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.contact-card p {
    margin-top: 0.45rem;
}

.contact-card-link {
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.contact-card-link:hover,
.contact-card-link:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
}

.contact-panel {
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 44px rgba(7, 17, 31, 0.2);
}

.lead-form {
    display: grid;
    gap: 1rem;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.55rem;
}

.field label {
    color: var(--branco);
    font-size: 0.92rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--texto);
    padding: 1rem 1rem 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.field textarea {
    min-height: 118px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(122, 193, 67, 0.8);
    box-shadow: 0 0 0 5px rgba(122, 193, 67, 0.16);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: #D94A38;
    box-shadow: 0 0 0 5px rgba(217, 74, 56, 0.12);
}

.form-feedback {
    min-height: 1.4rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.page-sector .hero {
    padding-bottom: 4rem;
}

.page-sector .hero-title {
    max-width: 12ch;
    font-size: clamp(2.6rem, 6.2vw, 5rem);
}

.page-sector .hero-copy {
    max-width: 40rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.pain-card {
    padding: 1.4rem;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.flow-step {
    padding: 1.4rem;
    border: 1px solid rgba(14, 23, 40, 0.08);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.96));
    box-shadow: var(--shadow-card);
}

.flow-step strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(122, 193, 67, 0.14);
    color: var(--verde-escuro);
    font-family: var(--font-display);
    font-size: 0.94rem;
}

.flow-step h3 {
    margin-top: 1rem;
    font-size: 1.18rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.metric-card {
    padding: 1.35rem;
}

.metric-card h3 {
    font-size: 1.05rem;
}

.metric-card p {
    font-size: 0.98rem;
}

.site-footer {
    padding: 5rem 5% 2rem;
    background:
        radial-gradient(circle at 12% 12%, rgba(122, 193, 67, 0.1), transparent 20%),
        linear-gradient(180deg, #07111F 0%, #091324 100%);
    color: rgba(255, 255, 255, 0.7);
}

.footer-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 360px;
}

.footer-brand img {
    height: 58px;
    mix-blend-mode: screen;
    filter: brightness(1.15);
}

.footer-title {
    display: block;
    margin-bottom: 1rem;
    color: var(--branco);
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
}

.footer-grid h4 {
    color: var(--branco);
    font-size: 1rem;
}

.footer-grid a,
.footer-grid li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: var(--verde-principal);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.92rem;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.82rem 0.98rem;
    border-radius: 16px;
    background: var(--verde-principal);
    color: var(--azul-950);
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(122, 193, 67, 0.28);
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-2px);
    background: var(--verde-escuro);
    color: var(--branco);
    box-shadow: 0 24px 50px rgba(122, 193, 67, 0.24);
}

@media (max-width: 1100px) {
    .hero-shell,
    .showcase-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .signal-grid,
    .feature-grid,
    .duo-grid,
    .value-grid,
    .stack-grid,
    .sector-grid,
    .pain-grid,
    .footer-grid,
    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-title {
        max-width: 14ch;
    }
}

@media (max-width: 991px) {
    body.nav-open {
        overflow: hidden;
    }

    .site-nav {
        position: relative;
        align-items: center;
        flex-wrap: wrap;
        padding: 0.75rem 5%;
        padding-right: 5.25rem;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        right: 2.25rem;
        margin-left: 0;
        transform: translateY(-50%);
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        order: 10;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 1rem;
        margin-top: 0;
        border: 1px solid transparent;
        border-radius: 18px;
        background: rgba(8, 15, 28, 0.98);
        transition: max-height 280ms ease;
    }

    .nav-links.active {
        max-height: min(78vh, var(--nav-links-height, 520px));
        margin-top: 0.75rem;
        padding-top: 0.2rem;
        padding-bottom: 0.25rem;
        border-color: rgba(255, 255, 255, 0.08);
        overflow-y: auto;
    }

    .nav-links > a,
    .nav-links > .dropdown {
        width: 100%;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dropdown {
        width: 100%;
    }

    .dropbtn {
        width: 100%;
        justify-content: space-between;
        padding: 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        min-width: 0;
        margin-top: 0.8rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero {
        padding-top: 6rem;
    }

    .section {
        padding: 4.2rem 5%;
    }
}

@media (max-width: 760px) {
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-head.centered {
        margin-bottom: 2rem;
    }

    .signal-grid,
    .comparison-grid,
    .feature-grid,
    .duo-grid,
    .value-grid,
    .stack-grid,
    .sector-grid,
    .pain-grid,
    .field-grid,
    .footer-grid,
    .process-grid,
    .dashboard-grid,
    .board-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .hero-shell {
        gap: 1.5rem;
    }

    .hero-title,
    .page-sector .hero-title {
        max-width: 10ch;
        font-size: clamp(2.18rem, 11vw, 3.5rem);
    }

    .hero-copy {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hero-title {
        margin-top: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1.5rem;
    }

    .hero-actions .btn,
    .contact-panel .btn,
    .sector-card .btn {
        width: 100%;
    }

    .dashboard-head,
    .board-head,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-proof {
        gap: 0.55rem;
        margin-top: 1rem;
    }

    .proof-chip {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.82rem;
        padding: 0.65rem 0.75rem;
    }

    .hero-visual {
        display: none;
    }

    .dashboard,
    .contact-panel,
    .feature-card,
    .value-card,
    .sector-card,
    .faq-item,
    .contact-card {
        border-radius: 18px;
    }

    .contact-cards {
        gap: 0.75rem;
    }

    .floating-whatsapp {
        display: none;
    }
}

@media (max-width: 560px) {
    .site-nav {
        padding: 0.68rem 5%;
    }

    .logo img {
        height: 42px;
    }

    .logo-copy {
        font-size: 1.26rem;
    }

    .menu-toggle span {
        width: 24px;
        height: 2.5px;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .hero-copy,
    .section-copy,
    .feature-card p,
    .sector-card p,
    .pain-card p,
    .process-step p,
    .contact-card p,
    .faq-item p {
        font-size: 0.98rem;
    }

    .dashboard,
    .showcase-panel,
    .contact-panel {
        padding: 1rem;
        border-radius: 18px;
    }

    .hero-proof {
        display: none;
    }

    .feature-card,
    .sector-card,
    .pain-card,
    .process-step,
    .metric-card {
        padding: 1.05rem;
    }

    .dashboard-card,
    .board-card {
        min-height: auto;
        padding: 0.9rem;
    }

    .dashboard-rail {
        gap: 0.45rem;
    }

    .dashboard-rail span {
        width: 100%;
        text-align: center;
    }

    .field input,
    .field select,
    .field textarea {
        border-radius: 14px;
        padding: 0.9rem 0.9rem 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

.page-home .hero-home {
    padding: 6.8rem 5% 4.4rem;
}

.page-home .hero-home::before,
.page-home .hero-home::after {
    opacity: 0.18;
}

.hero-shell-simple {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: stretch;
}

.simple-home-title {
    max-width: 14ch;
    font-size: clamp(2.7rem, 4.8vw, 4.6rem);
    line-height: 1.02;
}

.hero-about-copy {
    max-width: 42rem;
    font-size: 1.04rem;
}

.hero-visual-simple {
    display: flex;
    align-items: stretch;
}

.simple-hero-panel {
    width: 100%;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    box-shadow: 0 24px 54px rgba(7, 17, 31, 0.22);
}

.simple-hero-panel h2 {
    margin-top: 1rem;
    color: var(--branco);
    font-size: 2rem;
    line-height: 1.08;
}

.simple-hero-panel p {
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.simple-highlight-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.3rem;
}

.simple-highlight-list li {
    position: relative;
    padding-left: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.simple-highlight-list li::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--verde-principal);
}

.section-tight {
    padding-top: 4.4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 2rem;
    align-items: start;
}

.about-story {
    display: grid;
    gap: 1rem;
    max-width: 48rem;
}

.about-story p {
    font-size: 1rem;
    line-height: 1.8;
}

.about-metrics {
    margin-top: 1.5rem;
}

.modules-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-soft {
    background:
        radial-gradient(circle at 10% 10%, rgba(122, 193, 67, 0.08), transparent 22%),
        linear-gradient(180deg, #F5F8FC 0%, #EEF3F9 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.page-home .value-card::after,
.page-home .sector-card::after,
.page-home .flow-step::after,
.home-command::after {
    display: none;
}

.home-command {
    transform: none;
}

@media (max-width: 1180px) {
    .hero-shell-simple,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .modules-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .page-home .site-nav,
    .page-home .hero-shell,
    .page-home .section-shell,
    .page-home .footer-shell,
    .page-home .contact-grid {
        width: 100%;
        max-width: 100%;
    }

    .simple-home-title {
        max-width: 10ch;
        font-size: clamp(2.2rem, 9vw, 3.35rem);
    }

    .hero-visual-simple {
        display: none;
    }

    .page-home .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .modules-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .simple-home-title {
        max-width: 9ch;
        font-size: clamp(2rem, 8.2vw, 2.95rem);
    }
}

.page-home .hero-home-corporate {
    padding: 7.4rem 5% 3.2rem;
    background:
        radial-gradient(circle at 18% 12%, rgba(122, 193, 67, 0.12), transparent 24%),
        radial-gradient(circle at 82% 10%, rgba(36, 69, 125, 0.18), transparent 28%),
        linear-gradient(180deg, #07111F 0%, #0B1830 56%, #10213D 100%);
}

.page-home .hero-home-corporate::before {
    inset: auto auto 8% 4%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(122, 193, 67, 0.28), transparent 72%);
    opacity: 0.24;
}

.page-home .hero-home-corporate::after {
    inset: 10% 5% auto auto;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(36, 69, 125, 0.48), transparent 70%);
    opacity: 0.22;
}

.hero-shell-corporate {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: block;
}

.hero-copyblock-centered {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.hero-copyblock-centered .eyebrow {
    justify-content: center;
    color: rgba(255, 255, 255, 0.76);
}

.corporate-home-title {
    max-width: 15ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.98;
}

.corporate-home-copy {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.08rem;
}

.hero-actions-centered {
    justify-content: center;
}

.hero-band {
    width: min(1120px, 100%);
    margin: 2.4rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.hero-band-item {
    padding: 1.2rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(7, 17, 31, 0.14);
    backdrop-filter: blur(8px);
}

.hero-band-item strong {
    display: block;
    color: var(--branco);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: -0.03em;
}

.hero-band-item span {
    display: block;
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
    line-height: 1.65;
}

.section-corporate {
    padding-top: 5rem;
}

.about-corporate-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
    gap: 2.2rem;
    align-items: center;
}

.about-corporate-visual {
    display: grid;
    gap: 1rem;
}

.brand-panel {
    min-height: 100%;
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(180deg, #0B1830 0%, #10213D 100%);
    box-shadow: 0 30px 60px rgba(7, 17, 31, 0.14);
}

.brand-panel img {
    width: min(240px, 65%);
}

.brand-panel-copy {
    display: grid;
    gap: 0.7rem;
    margin-top: 2.6rem;
}

.brand-panel-copy strong {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand-panel-copy h2 {
    color: var(--branco);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.brand-panel-copy p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.brand-note {
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(14, 23, 40, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
}

.brand-note strong {
    color: var(--azul-900);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: -0.03em;
}

.brand-note p {
    margin-top: 0.45rem;
}

.about-corporate-copy {
    display: grid;
    gap: 1rem;
    align-content: center;
}

.about-corporate-copy p {
    max-width: 46rem;
    font-size: 1rem;
    line-height: 1.85;
}

.about-corporate-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0.4rem;
}

.about-point {
    padding: 1.15rem;
    border-top: 4px solid var(--azul-900);
    border-radius: 18px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FB 100%);
    box-shadow: var(--shadow-card);
}

.about-point h3 {
    font-size: 1rem;
    line-height: 1.15;
}

.about-point p {
    margin-top: 0.55rem;
    font-size: 0.94rem;
    line-height: 1.7;
}

.section-modules {
    background: #FFFFFF;
}

.modules-grid-corporate {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.module-card {
    display: grid;
    min-height: 100%;
    border: 1px solid rgba(14, 23, 40, 0.06);
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-card);
}

.module-card-top {
    min-height: 192px;
    padding: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-card-top.is-teal {
    background: #0B1830;
}

.module-card-top.is-olive {
    background: #0B1830;
}

.module-card-top svg {
    width: 94px;
    height: 94px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.module-card-body {
    padding: 1.45rem 1.35rem 1.6rem;
}

.module-card h3 {
    font-size: 1.55rem;
    line-height: 1.08;
    text-wrap: balance;
}

.module-card p {
    margin-top: 0.85rem;
    font-size: 0.98rem;
    line-height: 1.75;
}

.section-benefits {
    background: var(--surface);
}

.benefit-split {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: 2rem;
    align-items: start;
}

.benefit-summary {
    display: grid;
    gap: 1rem;
}

.benefit-summary .section-title {
    max-width: 12ch;
}

.benefit-summary p {
    max-width: 29rem;
    font-size: 1rem;
    line-height: 1.85;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.benefit-item {
    padding: 1.35rem;
    border: 1px solid rgba(14, 23, 40, 0.06);
    border-top: 4px solid var(--azul-900);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(245, 248, 252, 0.98));
    box-shadow: var(--shadow-card);
}

.benefit-item h3 {
    font-size: 1.08rem;
    line-height: 1.2;
}

.benefit-item p {
    margin-top: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.72;
}

.section-faq-corporate {
    background: linear-gradient(180deg, #0B1830 0%, #091325 100%);
}

.faq-shell-corporate {
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
    gap: 2.5rem;
}

.section-faq-corporate .eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.section-faq-corporate .section-title,
.section-faq-corporate .faq-intro p {
    color: var(--branco);
}

.section-faq-corporate .ponto-verde {
    color: rgba(255, 255, 255, 0.9);
}

.section-faq-corporate .faq-intro p {
    max-width: 22rem;
    opacity: 0.88;
    line-height: 1.8;
}

.faq-grid-corporate {
    display: grid;
    gap: 0;
}

.section-faq-corporate .faq-item {
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.section-faq-corporate .faq-grid-corporate > :last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.section-faq-corporate .faq-item summary {
    padding: 1.55rem 2.4rem 1.55rem 0;
    color: var(--branco);
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.section-faq-corporate .faq-item summary::after {
    color: rgba(255, 255, 255, 0.82);
}

.section-faq-corporate .faq-item p {
    color: rgba(255, 255, 255, 0.82);
    padding-bottom: 1.35rem;
}

.page-home .contact-section {
    padding-top: 5.25rem;
}

.page-home .site-footer {
    padding-top: 4.2rem;
}

@media (max-width: 1180px) {
    .hero-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-corporate-grid,
    .benefit-split,
    .faq-shell-corporate {
        grid-template-columns: 1fr;
    }

    .about-corporate-points,
    .modules-grid-corporate {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .page-home .hero-home-corporate {
        padding: 6.3rem 5% 2.5rem;
    }

    .corporate-home-title {
        max-width: 11ch;
        font-size: clamp(2.35rem, 10vw, 3.6rem);
    }

    .corporate-home-copy {
        font-size: 1rem;
    }

    .hero-band {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-top: 2rem;
    }

    .about-corporate-points,
    .modules-grid-corporate,
    .benefit-list {
        grid-template-columns: 1fr;
    }

    .module-card-top {
        min-height: 168px;
    }

    .module-card h3 {
        font-size: 1.35rem;
    }

    .faq-shell-corporate {
        gap: 1.6rem;
    }

    .section-faq-corporate .faq-item summary {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
}

@media (max-width: 560px) {
    .brand-panel {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .brand-panel-copy {
        margin-top: 2rem;
    }

    .hero-band-item,
    .about-point,
    .benefit-item,
    .brand-note {
        border-radius: 18px;
    }
}

.page-home .hero-home-corporate {
    padding-bottom: 4rem;
}

.corporate-home-title {
    max-width: 16ch;
    font-size: clamp(3rem, 5.5vw, 4.8rem);
}

.corporate-home-copy {
    max-width: 62rem;
}

.intro-split {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 2rem;
    align-items: start;
}

.intro-copy {
    display: grid;
    gap: 1rem;
    max-width: 44rem;
}

.intro-copy p {
    font-size: 1rem;
    line-height: 1.85;
}

.intro-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.intro-proof-card {
    padding: 1.25rem;
    border: 1px solid rgba(14, 23, 40, 0.08);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-card);
}

.intro-proof-card h3 {
    font-size: 1.05rem;
    line-height: 1.18;
}

.intro-proof-card p {
    margin-top: 0.55rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.simple-section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.simple-section-head .section-title {
    max-width: 20ch;
}

.simple-section-head .section-copy {
    max-width: 62rem;
}

.featured-module {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 1.6rem;
    margin-top: 1rem;
    padding: 1.8rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #0B1830 0%, #10213D 100%);
    box-shadow: 0 24px 54px rgba(7, 17, 31, 0.18);
}

.featured-module-copy h3 {
    color: var(--branco);
    font-size: 2rem;
    line-height: 1.04;
}

.featured-module-copy p {
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.featured-module-list {
    display: grid;
    gap: 0.8rem;
}

.featured-module-list li {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--branco);
    line-height: 1.55;
}

.support-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 1.2rem;
}

.support-modules-grid .module-card-top {
    min-height: 98px;
    padding: 1rem;
}

.support-modules-grid .module-card-top svg {
    width: 48px;
    height: 48px;
}

.support-modules-grid .module-card h3 {
    font-size: 1.18rem;
}

.support-modules-grid .module-card p {
    font-size: 0.96rem;
    line-height: 1.68;
}

.benefit-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.pain-column,
.benefit-column {
    display: grid;
    gap: 1rem;
}

.pain-column .section-title,
.benefit-column .section-title {
    max-width: 14ch;
}

.stack-list {
    display: grid;
    gap: 0.9rem;
}

.stack-card {
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(14, 23, 40, 0.08);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-card);
}

.stack-card h3 {
    font-size: 1.05rem;
    line-height: 1.22;
}

.stack-card p {
    margin-top: 0.55rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1180px) {
    .intro-split,
    .featured-module,
    .benefit-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .page-home .hero-home-corporate {
        padding: 6.1rem 5% 3rem;
    }

    .corporate-home-title {
        max-width: 12ch;
        font-size: clamp(2.12rem, 8.2vw, 3.3rem);
    }

    .intro-proof-grid,
    .support-modules-grid {
        grid-template-columns: 1fr;
    }

    .featured-module {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .featured-module-copy h3 {
        font-size: 1.55rem;
    }
}
