:root {
    --bg: #ffffff;
    --text: #111827;
    --muted: #5b6476;
    --line: rgba(17, 24, 39, 0.08);
    --card: rgba(255, 255, 255, 0.92);
    --blue: #2563eb;
    --purple: #7c3aed;
    --green: #22c55e;
    --shadow: 0 18px 60px rgba(44, 63, 124, 0.14);
    --shadow-strong: 0 24px 70px rgba(37, 99, 235, 0.22);
    --radius: 28px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 34%),
        var(--bg);
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.site-nav-brand {
    display: inline-grid;
    align-items: center;
    position: relative;
}

.site-nav-brand img {
    grid-area: 1 / 1;
    display: block;
    width: auto;
    height: auto;
    max-width: 350px;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.site-nav-brand-mobile {
    display: none !important;
    max-width: 150px !important;
}

.site-nav-brand-default {
    opacity: 1;
}

.site-nav-brand-hover {
    opacity: 0;
}

.site-nav-brand:hover .site-nav-brand-default {
    opacity: 0;
    transform: scale(0.985);
}

.site-nav-brand:hover .site-nav-brand-hover {
    opacity: 1;
    transform: scale(1);
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.08);
    cursor: pointer;
}

.site-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: #1e293b;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav-links a {
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    color: #475569;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.site-nav-links a:hover,
.site-nav-links a.is-active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--blue), var(--purple));
}

a {
    color: inherit;
    text-decoration: none;
}

svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 96px 0;
}

.section-tinted {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.section-gradient {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

.section-heading h2 span,
.hero-copy h1 span,
.cta-box h2 span,
.footer-block h3 {
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-heading p,
.info-card p,
.step-card p,
.plan-annual,
.footer-block p,
.footer-block li {
    color: var(--muted);
    line-height: 1.7;
}

.hero {
    overflow: clip;
    padding: 110px 0 88px;
    background: linear-gradient(135deg, #eff6ff 0%, #f6f3ff 48%, #ffffff 100%);
}

.hero-subpage {
    padding-top: 96px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 56px;
    align-items: center;
}

.hero-copy h1,
.cta-box h2 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.cta-box h2 {
    color: #ffffff;
}

.hero-copy p,
.cta-box p {
    max-width: 640px;
    margin: 22px 0 0;
    font-size: 1.22rem;
    line-height: 1.75;
    color: var(--muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue);
    font-weight: 700;
    font-size: 0.95rem;
}

.eyebrow-dark {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.pill-white {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18em 0.6em;
    border-radius: 999px;
    isolation: isolate;
    color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-image: linear-gradient(90deg, var(--blue), var(--purple)) !important;
}

.pill-white-soft {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18em 0.6em;
    border-radius: 999px;
    isolation: isolate;
    color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-image: linear-gradient(90deg, var(--blue), var(--purple)) !important;
    backdrop-filter: blur(6px);
}

.pill-white-teste {
    color: rgba(255, 255, 255, 0.25) !important;
}

.pill-white::before,
.pill-white-soft::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
}

.pill-white::before {
    background: #ffffff;
}

.pill-white-soft::before {
    background: rgba(255, 255, 255, 0.72);
}

.hero-actions,
.cta-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-actions {
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 16px 28px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    box-shadow: 0 16px 36px rgba(77, 99, 241, 0.28);
}

.button-consultant {
    color: #ffffff;
    background: linear-gradient(90deg, #0a23e2, #4ebb9c) !important;
    box-shadow: 0 16px 36px rgba(22, 63, 144, 0.24) !important;
    border: solid white 2px;
}

.button-secondary,
.button-light {
    background: #ffffff;
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.button-large {
    min-height: 66px;
    padding-inline: 34px;
    font-size: 1.08rem;
}

.hero-actions-center {
    justify-content: center;
    margin-top: 28px;
}

.hero-preview {
    position: relative;
}

.browser-card {
    position: relative;
    padding: 22px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: var(--shadow-strong);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.browser-card:hover {
    transform: rotate(0deg);
}

.browser-card-365 {
    padding: 28px;
    transform: none;
}

.browser-topbar,
.browser-content {
    border-radius: 24px;
    background: #ffffff;
}

.browser-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px 10px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dots span:nth-child(1) { background: #ef4444; }
.dots span:nth-child(2) { background: #f59e0b; }
.dots span:nth-child(3) { background: #22c55e; }

.browser-url {
    margin-left: auto;
    padding: 9px 14px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.82rem;
}

.browser-content {
    padding: 18px 20px 24px;
}

.line {
    height: 16px;
    border-radius: 999px;
    background: #eef2f7;
}

.line + .line {
    margin-top: 14px;
}

.line-gradient {
    height: 34px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(124, 58, 237, 0.18));
}

.line-medium {
    width: 76%;
}

.line-large {
    width: 84%;
}

.mini-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 26px;
}

.mini-actions span {
    height: 44px;
    border-radius: 14px;
}

.mini-actions span:first-child {
    background: linear-gradient(90deg, var(--blue), #4f8cf6);
}

.mini-actions span:last-child {
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.app-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.app-icon {
    width: 22px;
    height: 22px;
    color: var(--blue);
}

.floating-badge {
    position: absolute;
    top: -18px;
    right: -10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fde047, #fbbf24);
    color: #713f12;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(251, 191, 36, 0.35);
    animation: pulse-badge 2s infinite;
}

.hero-glow,
.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    pointer-events: none;
}

.hero-glow-left {
    top: 70px;
    left: -60px;
    width: 240px;
    height: 240px;
    background: rgba(37, 99, 235, 0.32);
}

.hero-glow-right {
    right: -80px;
    bottom: 40px;
    width: 320px;
    height: 320px;
    background: rgba(124, 58, 237, 0.28);
}

.card-grid,
.plans-grid,
.steps-grid {
    display: grid;
    gap: 24px;
}

.card-grid-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-differentials {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-story-card {
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.about-story-card-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
}

.about-story-card-eyebrow-blue {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue);
}

.about-story-card-eyebrow-green {
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
}

.about-story-card-eyebrow-lilac {
    background: rgba(139, 92, 246, 0.14);
    color: #7c3aed;
}

.about-story-card h3 {
    margin: 0 0 16px;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.02;
}

.about-story-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.9;
}

.about-carousel {
    max-width: 980px;
    margin: 0 auto;
}

.about-carousel-frame {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 34px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(135deg, #eef4ff 0%, #f8fbff 48%, #ffffff 100%);
    box-shadow: 0 24px 54px rgba(32, 52, 109, 0.14);
}

.about-carousel-frame-content {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), transparent 30%),
        radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.1), transparent 35%),
        linear-gradient(135deg, #eef4ff 0%, #f8fbff 48%, #ffffff 100%);
}

.about-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.about-carousel-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.about-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.36));
}

.about-carousel-slide-content {
    padding: 54px;
}

.about-carousel-slide-content::after {
    display: none;
}

.about-carousel-content-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.about-carousel-content-card h3 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.02;
}

.about-carousel-content-card p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.95;
}

.about-carousel-content-card-blue {
    box-shadow: 0 22px 56px rgba(37, 99, 235, 0.12);
}

.about-carousel-content-card-green {
    box-shadow: 0 22px 56px rgba(22, 163, 74, 0.12);
}

.about-carousel-content-card-lilac {
    box-shadow: 0 22px 56px rgba(124, 58, 237, 0.14);
}

.about-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.about-carousel-arrow:hover {
    transform: translateY(-50%) scale(1.04);
}

.about-carousel-arrow-prev {
    left: 20px;
}

.about-carousel-arrow-next {
    right: 20px;
}

.about-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.about-carousel-dot {
    width: 14px;
    height: 14px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.45);
    cursor: pointer;
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.about-carousel-dot.is-active {
    background: linear-gradient(90deg, var(--blue), var(--purple));
    transform: scale(1.15);
}

.info-card,
.step-card,
.plan-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.info-card:hover,
.step-card:hover,
.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(44, 63, 124, 0.16);
    border-color: rgba(37, 99, 235, 0.14);
}

.info-card,
.step-card {
    padding: 30px;
}

.card-grid-benefits .info-card::after {
    content: "";
    position: absolute;
    inset: auto 18px -18px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.22), rgba(124, 58, 237, 0.2));
    filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
    transform: translateY(10px) scale(0.9);
}

.card-grid-benefits .info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 68px rgba(44, 63, 124, 0.2);
}

.card-grid-benefits .info-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.steps-grid .step-card::after {
    content: "";
    position: absolute;
    inset: auto 18px -18px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.22), rgba(124, 58, 237, 0.2));
    filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
    transform: translateY(10px) scale(0.9);
}

.steps-grid .step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 68px rgba(44, 63, 124, 0.2);
}

.steps-grid .step-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.icon-box,
.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.icon-box svg,
.step-icon svg {
    width: 55%;
    height: 55%;
}

.icon-box {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.icon-box-blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.icon-box-lilac {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.icon-box-green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.icon-box-purple {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.icon-box-pink {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.icon-box-accent {
    background: linear-gradient(135deg, #14b8a6, #8b5cf6);
}

.step-card {
    padding-top: 42px;
    text-align: center;
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-icon {
    position: absolute;
    top: -26px;
    left: 50%;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    transform: translateX(-50%);
    box-shadow: 0 16px 32px rgba(77, 99, 241, 0.25);
}

.step-number {
    margin-top: 24px;
    font-size: clamp(3rem, 6vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    color: rgba(17, 24, 39, 0.08);
}

.plans-grid {
    align-items: start;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
    padding: 34px 28px 28px;
}

.plan-card-featured {
    border: 0;
    color: #ffffff;
    background: linear-gradient(160deg, var(--blue), var(--purple));
    box-shadow: 0 24px 60px rgba(77, 99, 241, 0.3);
    transform: translateY(-10px);
}

.plan-card-featured .plan-price-label,
.plan-card-featured .plan-annual,
.plan-card-featured .plan-features li span:last-child {
    color: rgba(255, 255, 255, 0.88);
}

.plan-card-featured .checkmark {
    color: #ffffff;
}

.plan-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #facc15, #fb923c);
    color: #1f2937;
    font-size: 0.92rem;
    font-weight: 800;
    transform: translateX(-50%);
    box-shadow: 0 16px 34px rgba(251, 146, 60, 0.28);
}

.plan-header {
    text-align: center;
}

.plan-card .button {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

.plan-card .button.button-consultant {
    color: #ffffff;
    background-color: #16a34a;
    background-image: linear-gradient(90deg, #16a34a, var(--green));
    box-shadow: 0 16px 36px rgba(34, 197, 94, 0.24);
}

.plan-conversion-notes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    text-align: center;
}

.plan-conversion-notes span {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.plan-card-featured .plan-conversion-notes span {
    color: rgba(255, 255, 255, 0.88);
}

.plan-header h3 {
    margin: 0 0 14px;
    font-size: 2rem;
}

.plan-price-label {
    margin-bottom: 6px;
    color: #6b7280;
    font-size: 0.96rem;
}

.plan-price {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.05em;
}

.plan-price-sub {
    font-size: 12pt;
    font-weight: 400;
    letter-spacing: 0;
}

.plan-annual {
    margin-top: 6px;
    font-size: 0.96rem;
}

.plan-features {
    display: grid;
    gap: 14px;
    margin: 28px 0 30px;
    padding: 0;
    list-style: none;
}

.plan-features li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
}

.plan-summary {
    margin: 18px 0 0;
    text-align: center;
    color: var(--muted);
    line-height: 1.7;
}

.plans-grid-365 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkmark {
    width: 22px;
    height: 22px;
    color: var(--green);
}

.feature-note {
    font-size: 0.88rem;
    font-style: italic;
}

.stats-panel {
    margin-top: 34px;
    padding: 42px;
    border-radius: 34px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: var(--shadow-strong);
}

.stats-panel h3 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 1.8rem);
    line-height: 1.08;
}

.stats-panel p {
    max-width: 720px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.86);
}

.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 44px;
    margin-top: 30px;
}

.stats-grid strong {
    display: block;
    margin-bottom: 6px;
    font-size: 2.8rem;
    line-height: 1;
}

.stats-grid span {
    color: rgba(255, 255, 255, 0.76);
}

.section-portfolio {
    overflow: clip;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.portfolio-showcase-shell {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-top: 10px;
    margin-left: -50vw;
    overflow: hidden;
}

.portfolio-showcase {
    display: flex;
    gap: 34px;
    width: max-content;
    padding: 22px 48px 16px;
    overflow: hidden;
    will-change: transform;
}

.portfolio-showcase::-webkit-scrollbar {
    display: none;
}

.portfolio-showcase-shell::before,
.portfolio-showcase-shell::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(10vw, 120px);
    z-index: 2;
    pointer-events: none;
}

.portfolio-showcase-shell::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.portfolio-showcase-shell::after {
    right: 0;
    background: linear-gradient(270deg, #f8fbff 0%, rgba(248, 251, 255, 0) 100%);
}

.portfolio-card {
    flex: 0 0 320px;
    display: grid;
    gap: 18px;
}

.portfolio-card-frame {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
    width: 320px;
    height: 460px;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.portfolio-card-frame::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 58px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
}

.portfolio-card img {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.42s ease, object-fit 0.42s ease, background-color 0.42s ease;
}

.portfolio-card:hover .portfolio-card-frame {
    transform: translateY(-10px);
    box-shadow: 0 34px 72px rgba(15, 23, 42, 0.2);
}

.portfolio-card:hover img {
    object-fit: contain;
    background-color: #f8fbff;
}

.portfolio-card-copy {
    text-align: center;
}

.portfolio-card-copy h3 {
    margin: 10px 0 0;
    font-size: 1.05rem;
    line-height: 1.35;
}

.portfolio-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.portfolio-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 42px 32px;
    border: 1px dashed rgba(37, 99, 235, 0.24);
    border-radius: 34px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
}

.portfolio-empty-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    padding: 18px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 18px 34px rgba(77, 99, 241, 0.22);
}

.portfolio-empty h3 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.portfolio-empty p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.cta-section {
    overflow: clip;
    padding-block: 110px;
    /* background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 50%, #6d28d9 100%); */
    background: linear-gradient(135deg, #0f172a 0%, #12255c 50%, #6d28d9 100%);
}

.cta-box {
    position: relative;
    z-index: 1;
    max-width: 860px;
    text-align: center;
}

.cta-box p {
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.82);
}

.cta-notes {
    justify-content: center;
    margin-top: 30px;
}

.cta-notes span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.96rem;
}

.cta-notes i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.12);
}

.cta-glow-left {
    top: 80px;
    left: 8%;
    width: 260px;
    height: 260px;
    background: rgba(59, 130, 246, 0.24);
}

.cta-glow-right {
    right: 10%;
    bottom: 50px;
    width: 280px;
    height: 280px;
    background: rgba(168, 85, 247, 0.2);
}

.site-footer {
    color: #ffffff;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 32px;
    padding: 62px 0 40px;
}

.footer-block h3 {
    margin: 0 0 16px;
    font-size: 2rem;
}

.footer-brand-logo {
    display: block;
    width: auto;
    max-width: 220px;
    height: auto;
    margin: 0 0 16px;
}

.footer-brand-img {
    display: block;
    width: auto;
    max-width: 150px;
    height: auto;
    margin-top: 20px;
}

.footer-block h4 {
    margin: 0 0 18px;
    font-size: 1.1rem;
}

.footer-block p,
.footer-block ul {
    margin: 0;
    padding: 0;
}

.footer-block ul {
    display: grid;
    gap: 10px;
    list-style: none;
}

.footer-block a:hover {
    color: #93c5fd;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    padding: 22px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
}

.icon {
    flex: 0 0 auto;
    width: 1.1em;
    height: 1.1em;
}

.icon-inline {
    display: inline-flex;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
    transition-delay: 0.12s;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@media (max-width: 1080px) {
    .card-grid-benefits,
    .card-grid-differentials,
    .steps-grid,
    .plans-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-preview {
        max-width: 760px;
        margin: 0 auto;
    }

    .plans-grid-365 {
        grid-template-columns: 1fr;
    }

    .about-carousel-frame {
        min-height: 440px;
    }

    .about-carousel-slide-content {
        padding: 30px;
    }

    .about-carousel-content-card {
        padding: 32px 28px;
    }
}

@media (max-width: 760px) {
    .faq-shell {
        padding: 22px;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .section {
        padding: 78px 0;
    }

    .hero {
        padding-top: 92px;
    }

    .hero-copy h1,
    .cta-box h2 {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
    }

    .hero-copy p,
    .cta-box p {
        font-size: 1.04rem;
    }

    .site-nav-inner {
        padding: 14px 0;
        gap: 12px;
        flex-wrap: wrap;
    }

    .site-nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .site-nav-links.is-open {
        display: flex;
    }

    .site-nav-links a {
        text-align: center;
    }

    .site-nav-brand-desktop {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .site-nav-brand-mobile {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .card-grid-benefits,
    .card-grid-differentials,
    .steps-grid,
    .plans-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .plan-card-featured {
        transform: none;
    }

    .button,
    .button-large {
        width: 100%;
    }

    .hero-actions,
    .cta-notes {
        flex-direction: column;
    }

    .browser-card {
        border-radius: 26px;
        transform: none;
    }

    .stats-panel {
        padding: 34px 24px;
    }

    .portfolio-showcase {
        gap: 22px;
        padding: 14px 24px 12px;
    }

    .portfolio-showcase-shell {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .portfolio-showcase-shell::-webkit-scrollbar {
        display: none;
    }

    .portfolio-showcase {
        touch-action: pan-x;
    }

    .portfolio-card {
        flex-basis: 320px;
    }

    .portfolio-card-frame,
    .portfolio-card img {
        width: 320px;
        height: 460px;
    }

    .stats-grid {
        gap: 28px;
    }

    .floating-badge {
        right: 10px;
    }

    .app-grid {
        grid-template-columns: 1fr;
    }

    .about-carousel-frame {
        min-height: 300px;
    }

    .about-carousel-slide-content {
        padding: 18px;
    }

    .about-carousel-content-card {
        padding: 26px 22px;
    }

    .about-carousel-content-card p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-carousel-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.7rem;
    }

    .about-carousel-arrow-prev {
        left: 12px;
    }

    .about-carousel-arrow-next {
        right: 12px;
    }

    .portfolio-empty {
        padding: 30px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}



@media (max-width: 1024px) {
    .faq-shell {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    .faq-list {
        grid-column: 1;
    }
}

@media (min-width: 1024px) {
    .faq-intro {
        position: sticky;
    }
}


.section-faq {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
    gap: 32px;
    align-items: start;
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: var(--shadow);
}

.faq-intro {
    /*position: sticky;*/
    top: 110px;
}

.faq-intro h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.08;
}

.faq-intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.faq-item.is-open {
    border-color: rgba(124, 58, 237, 0.24);
    box-shadow: 0 24px 60px rgba(124, 58, 237, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    font: inherit;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    transform: translate(-50%, -50%);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.3);
}

.faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

/* Secao: Nossa Organizacao */
.section-heading-actions {
    margin-top: 20px;
}

.organization-gallery-trigger {
    min-height: 52px;
}

.organization-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.organization-card {
    margin: 0;
}

.organization-media {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.organization-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.organization-card:hover .organization-media img {
    transform: scale(1.08);
}

.organization-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: grid;
    place-items: center;
    padding: 26px;
}

.organization-gallery-lightbox[hidden] {
    display: none;
}

.organization-gallery-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.organization-gallery-dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: min(92vh, 860px);
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 34px 84px rgba(15, 23, 42, 0.4);
    display: grid;
    gap: 16px;
    overflow: hidden;
}

.organization-gallery-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.organization-gallery-topbar h3 {
    margin: 0;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}

.organization-gallery-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    color: #0f172a;
    background: rgba(148, 163, 184, 0.2);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.organization-gallery-stage {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #e2e8f0;
}

.organization-gallery-stage img {
    display: block;
    width: 100%;
    max-height: 60vh;
    min-height: 320px;
    object-fit: cover;
}

.organization-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.54);
    font-size: 1.4rem;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
}

.organization-gallery-nav-prev {
    left: 14px;
}

.organization-gallery-nav-next {
    right: 14px;
}

.organization-gallery-caption {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

.organization-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
    gap: 10px;
    max-height: 150px;
    padding-right: 4px;
    overflow: auto;
}

.organization-gallery-thumb {
    position: relative;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #cbd5e1;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.24s ease, transform 0.24s ease;
}

.organization-gallery-thumb.is-active {
    border-color: #2563eb;
}

.organization-gallery-thumb:hover {
    transform: translateY(-2px);
}

.organization-gallery-thumb img {
    display: block;
    width: 100%;
    height: 72px;
    object-fit: cover;
}

/* Secao: Idealizadores */
.founders-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: center;
}

.founders-photo-shell {
    position: relative;
    min-height: 560px;
}

.founders-photo-shell::after {
    content: "";
    position: absolute;
    inset: auto 18px -18px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.22), rgba(124, 58, 237, 0.2));
    filter: blur(20px);
    opacity: 0.9;
    pointer-events: none;
}

.founders-photo-frame {
    position: absolute;
    margin: 0;
    border: 0;
    padding: 14px 14px 22px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 26px 58px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.founders-photo-frame:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.24);
    outline-offset: 6px;
}

.founders-photo-frame-back {
    inset: 24px 132px 150px 36px;
    transform: rotate(-8deg);
    z-index: 1;
    opacity: 0.96;
    pointer-events: auto;
    cursor: pointer;
}

.founders-photo-frame-front {
    inset: 170px 52px 36px 180px;
    transform: rotate(7deg);
    z-index: 2;
    pointer-events: none;
    cursor: default;
}

.founders-photo-frame-back:hover,
.founders-photo-shell.is-swapped .founders-photo-frame-front:hover {
    box-shadow: 0 30px 64px rgba(15, 23, 42, 0.22);
}

.founders-photo-frame-back:hover .founders-photo,
.founders-photo-shell.is-swapped .founders-photo-frame-front:hover .founders-photo {
    transform: scale(1.02);
}

.founders-photo-shell.is-swapped .founders-photo-frame-back {
    inset: 170px 52px 36px 180px;
    transform: rotate(7deg);
    z-index: 2;
    opacity: 1;
    pointer-events: none;
    cursor: default;
}

.founders-photo-shell.is-swapped .founders-photo-frame-front {
    inset: 24px 132px 150px 36px;
    transform: rotate(-8deg);
    z-index: 1;
    opacity: 0.96;
    pointer-events: auto;
    cursor: pointer;
}

.founders-photo {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.92);
    object-fit: cover;
    transition: transform 0.28s ease;
}

.founders-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

.founders-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.02rem;
}

.founders-copy p + p {
    margin-top: 18px;
}

@media (max-width: 1080px) {
    .organization-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .organization-gallery-dialog {
        padding: 20px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .founders-photo-shell {
        min-height: 620px;
    }

    .founders-photo-frame-back {
        inset: 24px 180px 144px 48px;
    }

    .founders-photo-frame-front {
        inset: 176px 88px 32px 220px;
    }

    .founders-photo-shell.is-swapped .founders-photo-frame-back {
        inset: 176px 88px 32px 220px;
    }

    .founders-photo-shell.is-swapped .founders-photo-frame-front {
        inset: 24px 180px 144px 48px;
    }
}

@media (max-width: 760px) {
    .organization-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .section-heading-actions .button {
        width: 100%;
    }

    .organization-gallery-lightbox {
        padding: 12px;
    }

    .organization-gallery-dialog {
        max-height: 94vh;
        padding: 14px;
        border-radius: 20px;
        gap: 12px;
    }

    .organization-gallery-stage img {
        min-height: 220px;
        max-height: 48vh;
    }

    .organization-gallery-nav {
        width: 40px;
        height: 40px;
    }

    .organization-gallery-nav-prev {
        left: 10px;
    }

    .organization-gallery-nav-next {
        right: 10px;
    }

    .organization-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-height: 120px;
    }

    .organization-gallery-thumb img {
        height: 58px;
    }

    .founders-grid {
        gap: 24px;
    }

    .founders-photo-shell {
        min-height: 420px;
    }

    .founders-photo-frame {
        padding: 10px 10px 16px;
        border-radius: 24px;
    }

    .founders-photo-frame-back {
        inset: 8px 108px 116px 10px;
    }

    .founders-photo-frame-front {
        inset: 132px 14px 14px 124px;
    }

    .founders-photo-shell.is-swapped .founders-photo-frame-back {
        inset: 132px 14px 14px 124px;
    }

    .founders-photo-shell.is-swapped .founders-photo-frame-front {
        inset: 8px 108px 116px 10px;
    }

    .founders-copy h2 {
        margin-bottom: 16px;
    }
}

.section-contact-form {
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

.contact-form-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 16px;
    background: #f9fafb;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.form-privacy {
    font-size: 0.88rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-feedback {
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedback-success { background: #dcfce7; color: #166534; }
.feedback-error { background: #fee2e2; color: #991b1b; }

.unsubscribe-card {
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.16);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 2rem;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 9998; transition: transform 0.3s ease;
    position: fixed;
    text-align: center;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float .icon {
    width: 34px;
    height: 34px;
    display: flex;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #7c3aed;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px);
    background-color: #6d28d9;
}
.back-to-top .icon { transform: rotate(-90deg); display: inline-flex; }

@media (max-width: 760px) {
    .whatsapp-float {
        bottom: 6rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 760px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-group-full { grid-column: span 1; }
    .contact-form-wrapper { padding: 24px; }
    .form-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 992px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.section-map {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 -15px 40px rgba(17, 24, 39, 0.06);
    border-top: 1px solid rgba(17, 24, 39, 0.05);
}

.section-map::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
    z-index: 1;
    pointer-events: none;
}

.section-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Sidebar Styles */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 48px;
    align-items: start;
}

.content-area h1 {
    margin: 0 0 24px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.content-area p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 24px;
}

.site-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.widget-title {
    margin: 0 0 20px;
    font-size: 1.25rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    border-radius: 99px;
}

.search-input-group {
    display: flex;
    gap: 8px;
}

.search-submit {
    flex: 0 0 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    color: #ffffff;
    cursor: pointer;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.widget-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.25s ease, transform 0.25s ease;
}

.widget-list li a:hover {
    color: var(--blue);
    transform: translateX(5px);
}

.widget-cta {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #ffffff;
    border: 0;
    text-align: center;
}

.widget-cta-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
}

.widget-cta h4 { margin: 0 0 10px; color: #ffffff; }
.widget-cta p { margin: 0 0 20px; font-size: 0.95rem; opacity: 0.9; }
.button-small { min-height: 44px; padding: 10px 20px; font-size: 0.9rem; }

.recent-item { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
.recent-item:last-child { border-bottom: 0; }
.recent-date { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; color: var(--blue); }
.recent-item p { margin: 4px 0 0; font-size: 0.95rem; font-weight: 600; line-height: 1.4; color: var(--text); }

.pulse-badge-anim {
    animation: pulse-badge 2s infinite;
}


/* Garante que o span tenha um espaço mínimo mesmo vazio */
.texto-digitando {
 
