:root {
    /* Mensalee — roxo + azul claro */
    --ms-text: #333333;
    --ms-primary: #6c63ff;
    --ms-cyan: #1088bc;
    --ms-accent: #3498e8;
    --ms-accent-light: #76cef1;
    --ms-bg: #eeeeee;
    --ms-surface: #ffffff;
    --ms-surface-soft: #fafafa;
    --ms-soft: rgba(108, 99, 255, 0.1);
    --ms-primary-dark: #574fd4;
    --header-h: 80px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --section-y: clamp(3.25rem, 6vw, 5.5rem);
    --container-px: clamp(1rem, 4vw, 2rem);
    --shadow-sm: 0 2px 8px rgba(108, 99, 255, 0.08);
    --shadow-md: 0 12px 40px rgba(108, 99, 255, 0.12);
    --shadow-lg: 0 24px 64px rgba(108, 99, 255, 0.16);
    --shadow-glow-accent: 0 0 80px rgba(118, 206, 241, 0.28);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
}

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

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Poppins', Helvetica, Arial, sans-serif !important;
    background-color: var(--ms-bg) !important;
    color: var(--ms-text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(118, 206, 241, 0.35);
    color: var(--ms-text);
}

/* ——— Header ——— */
.site-header {
    height: var(--header-h);
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0px;
    left: 0px;
    -webkit-tap-highlight-color: transparent;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(1rem, 5vw, 15%);
    box-shadow: 0 1px 0 var(--ms-soft);
    transition: box-shadow 0.35s var(--ease-out-expo), background-color 0.35s ease;
}

.site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 24px rgba(45, 46, 64, 0.1);
}

.site-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 46, 64, 0.08), transparent);
    pointer-events: none;
}

.site-header__brand {
    display: flex;
    align-items: center;
    line-height: 0;
    transition: transform 0.3s var(--ease-out-expo);
}

.site-header__brand:hover {
    transform: scale(1.02);
}

.site-header__brand:focus-visible {
    outline: 2px solid var(--ms-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.logo-header {
    height: auto;
    max-height: 52px;
    width: auto;
    display: block;
}

.btn-cta-purple {
    position: relative;
    overflow: hidden;
    background: linear-gradient(122deg, #6c63ff, #1088bc);
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.35s ease, filter 0.3s ease;
    border: none;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cta-purple::after {
    content: "";
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: left 0.55s var(--ease-out-expo);
}

.btn-cta-purple:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(108, 99, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    filter: brightness(1.05);
    background: linear-gradient(122deg, #5b52e8, #0e7aa3);
}

.btn-cta-purple:hover::after {
    left: 100%;
}

.btn-cta-purple:active {
    transform: translateY(0);
}

.btn-cta-purple:focus-visible {
    outline: 2px solid var(--ms-accent);
    outline-offset: 3px;
}

.btn-cta-purple img {
    vertical-align: middle;
    margin-right: 6px;
}

.btn-cta-outline-purple {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    color: var(--ms-primary);
    border: 2px solid var(--ms-primary);
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.btn-cta-outline-purple:hover {
    background: linear-gradient(135deg, var(--ms-bg) 0%, #fff 100%);
    color: var(--ms-primary);
    border-color: var(--ms-cyan);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--ms-soft);
}

.card-plan-purple {
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--ms-primary), var(--ms-cyan), rgba(108, 99, 255, 0.45)) border-box;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), var(--shadow-md), 0 0 0 1px rgba(108, 99, 255, 0.15);
    position: relative;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.card-plan-purple:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg), 0 0 48px rgba(108, 99, 255, 0.22);
}

.card-plan-purple::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, transparent, var(--ms-primary), var(--ms-accent-light), var(--ms-cyan), transparent);
    opacity: 0.95;
    z-index: 2;
}

.btn-cta-white {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    color: var(--ms-primary);
    border: 1px solid var(--ms-primary);
    padding: clamp(16px, 3vw, 20px) clamp(40px, 8vw, 80px);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, background-color 0.25s ease, color 0.25s ease;
    font-size: clamp(15px, 2.5vw, 16px);
    margin-top: clamp(24px, 4vw, 36px);
    box-shadow: 0 4px 18px rgba(108, 99, 255, 0.2);
}

.btn-cta-white::after {
    content: "";
    position: absolute;
    inset: 0;
    left: -120%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.65s var(--ease-out-expo);
}

.btn-cta-white:hover {
    color: #fff;
    background: linear-gradient(122deg, #6c63ff, #1088bc);
    border-color: transparent;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(108, 99, 255, 0.35), var(--shadow-glow-accent);
}

.btn-cta-white:hover::after {
    left: 120%;
}

.btn-cta-white:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

/* ——— Hero ——— */
.main {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: #6c63ff;
    background-image:
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 255, 255, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(118, 206, 241, 0.22) 0%, transparent 48%),
        radial-gradient(ellipse 60% 45% at 100% 100%, rgba(16, 136, 188, 0.28) 0%, transparent 55%),
        linear-gradient(122deg, #6c63ff 0%, #1088bc 100%);
    width: 100%;
    min-height: min(92vh, 860px);
    padding: clamp(7rem, 14vw, 9rem) var(--container-px) clamp(4.5rem, 9vw, 6rem);
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-aurora {
    position: absolute;
    inset: -20% -30% 40% -30%;
    background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(118, 206, 241, 0.18) 0%, transparent 65%);
    pointer-events: none;
    animation: auroraShift 18s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes auroraShift {
    0% { transform: translate(-4%, 2%) scale(1); opacity: 0.85; }
    100% { transform: translate(4%, -2%) scale(1.08); opacity: 1; }
}

.main-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 95% 75% at 50% 35%, black 15%, transparent 72%);
    pointer-events: none;
    animation: patternDrift 32s linear infinite;
    z-index: 0;
}

@keyframes patternDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-56px, -56px); }
}

.main-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.main-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    animation: orbFloat 14s ease-in-out infinite;
}

.main-orb--a {
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    top: -10%;
    left: -15%;
    background: radial-gradient(circle, rgba(118, 206, 241, 0.35) 0%, transparent 70%);
    animation-delay: 0s;
}

.main-orb--b {
    width: min(320px, 55vw);
    height: min(320px, 55vw);
    bottom: 5%;
    right: -8%;
    background: radial-gradient(circle, rgba(100, 120, 255, 0.12) 0%, transparent 70%);
    animation-delay: -5s;
    animation-duration: 18s;
}

.main-orb--c {
    width: min(200px, 40vw);
    height: min(200px, 40vw);
    top: 40%;
    right: 15%;
    background: radial-gradient(circle, rgba(118, 206, 241, 0.22) 0%, transparent 70%);
    animation-delay: -8s;
    animation-duration: 12s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -18px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.98); }
}

.main::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(118, 206, 241, 0.5), var(--ms-accent), rgba(118, 206, 241, 0.5), transparent);
    opacity: 0.9;
    box-shadow: 0 0 24px rgba(118, 206, 241, 0.35);
    z-index: 2;
}

.main-inner {
    position: relative;
    z-index: 3;
    max-width: 920px;
    margin: 0 auto;
}

.main h1 {
    font-size: clamp(1.65rem, 4.5vw, 3.15rem);
    margin: 0px;
    padding: 0px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.18;
    max-width: 18em;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
    animation: heroIn 0.9s var(--ease-out-expo) both;
}

@supports not (background-clip: text) {
    .main h1 {
        color: #fff;
        background: none;
        text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
    }
}

.main .main-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    margin: 0px;
    padding: 0px;
    text-align: center;
    margin-top: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    font-weight: 400;
    animation: heroIn 0.9s var(--ease-out-expo) 0.12s both;
}

.main-footnote {
    font-size: clamp(0.875rem, 1.8vw, 1rem) !important;
    margin-top: clamp(1.25rem, 3vw, 1.75rem) !important;
    color: rgba(255, 255, 255, 0.82) !important;
    animation: heroIn 0.9s var(--ease-out-expo) 0.36s both;
}

.main .btn-cta-white {
    position: relative;
    z-index: 1;
    animation: heroIn 0.9s var(--ease-out-expo) 0.24s both;
}

.main-title,
.main-subtitle {
    position: relative;
    z-index: 1;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mac-mockup-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ms-bg);
}

.mac-mockup {
    width: 1000px;
    height: 550px;
    background-color: white;
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: -20vh;
    animation: subir-mockup 0.6s ease-out forwards;
}

.mac-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ball-red {
    width: 10px;
    height: 10px;
    background-color: #FA3432;
    border-radius: 50%;
}

.ball-yellow {
    width: 10px;
    height: 10px;
    background-color: #FEBC03;
    border-radius: 50%;
}

.ball-green {
    width: 10px;
    height: 10px;
    background-color: #18C167;
    border-radius: 50%;
}

.mac-body {
    border: 1px solid #eee;
    margin-top: 15px;
    border-radius: 3px;
    padding: 3px;
}

.mac-body img {
    width: 970px;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ——— Sections ——— */
.features-section {
    background-color: var(--ms-bg) !important;
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
    color: var(--ms-text);
    position: relative;
}

.features-section--lead {
    margin-top: clamp(-40px, -5vw, -28px);
    border-radius: clamp(28px, 5vw, 48px) clamp(28px, 5vw, 48px) 0 0;
    padding-top: calc(var(--section-y) + 0.75rem);
    z-index: 4;
    box-shadow: 0 -28px 100px rgba(0, 0, 0, 0.14);
    background: linear-gradient(180deg, var(--ms-surface-soft) 0%, var(--ms-bg) 22%, var(--ms-bg) 100%) !important;
}

.features-section--lead::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(118, 206, 241, 0.45), transparent);
    opacity: 0.85;
    pointer-events: none;
}

.features-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    mix-blend-mode: multiply;
    z-index: 0;
}

.features-section > * {
    position: relative;
    z-index: 1;
}

.section-container {
    margin-top: clamp(2rem, 4vw, 3rem) !important;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

.features-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

.badge-section {
    padding: 10px 26px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge-section.badge-blue {
    background-color: rgba(52, 152, 232, 0.14);
    color: #3498e8;
    border: 1px solid rgba(52, 152, 232, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 16px rgba(52, 152, 232, 0.1);
}

.features-section-card {
    padding: clamp(1.5rem, 3vw, 1.85rem) clamp(1.1rem, 2vw, 1.35rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: linear-gradient(165deg, #ffffff 0%, #faf9f7 100%);
    border-radius: 18px;
    box-shadow: var(--shadow-sm), 0 16px 48px rgba(45, 46, 64, 0.06);
    border: 1px solid rgba(45, 46, 64, 0.07);
    margin-bottom: 0;
    min-height: 250px;
    height: 100%;
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s ease, border-color 0.35s ease;
    position: relative;
}

.features-section-card:not(.card-plan-purple)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, rgba(118, 206, 241, 0.45), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.features-section-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), 0 24px 56px rgba(45, 46, 64, 0.1);
    border-color: rgba(118, 206, 241, 0.28);
}

.features-section-card:not(.card-plan-purple):hover::before {
    opacity: 1;
}

.features-section-card-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4px;
}

.features-section-card-header h4 {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.35;
}

.features-section-card-header-explain {
    padding-bottom: 8px;
    margin-top: 16px;
    font-weight: 400;
    font-size: 14px;
    color: #3a3c52;
    line-height: 1.65;
}

.features-cta-block {
    padding-top: 0.5rem;
}

.features-cta-hint {
    margin-top: 1.25rem !important;
    margin-bottom: 0 !important;
    font-size: 0.95rem;
    color: #5a5d72;
}

.box-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    margin-right: 14px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: transform 0.35s var(--ease-out-expo);
}

.features-section-card:hover .box-icon {
    transform: scale(1.06) rotate(-2deg);
}

.box-icon .material-symbols-outlined {
    font-size: 26px;
}

.box-icon img {
    width: 20px;
    fill: white;
}

.box-icon-purple {
    background-image: linear-gradient(135deg, #6c63ff, #1088bc);
}

.box-icon-blue {
    background: linear-gradient(135deg, #007bff 0%, #6f42c1 100%);
    box-shadow:
        inset 0 -2px 0 rgba(118, 206, 241, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 8px 20px rgba(108, 99, 255, 0.22);
}

.box-icon-orange {
    background-image: linear-gradient(to right, #f39c12, #e67e22);
}

.box-icon-gray {
    background-image: linear-gradient(to right, #6c757d, #343a40);
}

.box-icon-yellow {
    background-image: linear-gradient(to right, #dc4e43, #960c0c);
}

.box-icon-green {
    background-image: linear-gradient(to right, #0b7719, #12f373);
}

.text-plan-price {
    font-size: clamp(1.5rem, 3vw, 1.65rem);
    font-weight: bold;
    color: #6c63ff;
}

.plan-itens-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 28px;
}

.plan-itens-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.section-taxas {
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
}

.taxas-intro {
    margin-bottom: 0.5rem !important;
}

.taxas-subtitle {
    margin-top: 0.75rem !important;
    margin-bottom: 0 !important;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 36rem;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.5;
}

.card-blue {
    background: linear-gradient(to right, #007bff, #6f42c1);
    color: #fff !important;
    border: none;
    box-shadow: 0 12px 36px rgba(108, 99, 255, 0.28);
    border-radius: 16px !important;
    padding: clamp(1.5rem, 3vw, 2rem) !important;
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}

.card-blue:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(108, 99, 255, 0.32);
}

.card-blue h5,
.card-blue h6 {
    color: rgba(255, 255, 255, 0.96);
}

.card-compare {
    border-radius: 16px !important;
    border: 1px solid rgba(45, 46, 64, 0.1) !important;
    padding: clamp(1.5rem, 3vw, 2rem) !important;
    background: #faf9f8;
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}

.card-compare:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--ms-soft);
}

.cta-card {
    border-radius: 20px !important;
    padding-top: clamp(1.5rem, 3vw, 2rem) !important;
    padding-bottom: clamp(1.5rem, 3vw, 2rem) !important;
    border: 1px solid rgba(45, 46, 64, 0.08) !important;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%) !important;
    box-shadow: var(--shadow-sm), 0 20px 50px rgba(45, 46, 64, 0.06) !important;
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 24px 56px rgba(45, 46, 64, 0.09) !important;
}

.cta-card h5 {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.cta-card p {
    margin-bottom: 0;
    line-height: 1.6;
    color: #4a4d62;
}

/* ——— Scroll reveal ——— */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.75s var(--ease-out-expo),
        transform 0.75s var(--ease-out-expo);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.features-section .row.g-4 > [class*="col"]:nth-child(1) .reveal { transition-delay: 0ms; }
.features-section .row.g-4 > [class*="col"]:nth-child(2) .reveal { transition-delay: 55ms; }
.features-section .row.g-4 > [class*="col"]:nth-child(3) .reveal { transition-delay: 110ms; }
.features-section .row.g-4 > [class*="col"]:nth-child(4) .reveal { transition-delay: 165ms; }
.features-section .row.g-4 > [class*="col"]:nth-child(5) .reveal { transition-delay: 220ms; }
.features-section .row.g-4 > [class*="col"]:nth-child(6) .reveal { transition-delay: 275ms; }
.features-section .row.g-4 > [class*="col"]:nth-child(7) .reveal { transition-delay: 120ms; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .main-pattern {
        animation: none;
    }
    .main-aurora,
    .main-orb {
        animation: none !important;
    }
    .whatsapp-float {
        animation: none;
    }
    .btn-cta-purple::after,
    .btn-cta-white::after {
        transition: none;
        display: none;
    }
    .main h1,
    .main .main-subtitle,
    .main .btn-cta-white,
    .main-footnote {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.feedback-section {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--ms-text);
}

.owl-carousel-slide {
    margin-top: 30px;
    margin-bottom: 30px;
}

.img-slide {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.feedback-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(118, 206, 241, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, var(--ms-bg) 0%, #fff 42%, #faf9f7 100%);
    padding-top: var(--section-y);
    padding-bottom: clamp(3rem, 7vw, 5.5rem);
    padding-left: var(--container-px);
    padding-right: var(--container-px);
    position: relative;
}

.feedback-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 46, 64, 0.08), transparent);
    pointer-events: none;
}

.feedback-section-header {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.feedback-section-header h1 {
    font-size: clamp(1.5rem, 4vw, 2.35rem);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.feedback-section .container {
    max-width: 960px;
}

.feedback-bottom-row {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: 0.5rem;
}

.feedback-card {
    display: flex;
    flex-direction: row;
    gap: clamp(0.75rem, 2.5vw, 1.5rem);
    align-items: center;
    padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2rem);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.feedback-card-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32%;
    max-width: 200px;
    flex-shrink: 0;
}

.img-avatar-feedback {
    height: 100%;
    object-fit: contain;
    z-index: 2;
}

.card-avatar-feedback {
    width: min(180px, 38vw);
    height: min(180px, 38vw);
    background: linear-gradient(145deg, rgba(118, 206, 241, 0.4), rgba(108, 99, 255, 0.14));
    border-radius: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 32px var(--ms-soft);
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s ease;
}

.feedback-card:hover .card-avatar-feedback {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(45, 46, 64, 0.15);
}

.clients-section {
    background-color: #fff;
    padding-top: 50px;

}

/* Owl Carousel usa float no stage — não usar flex em .owl-stage/.owl-item (causa deslocamento e corte) */
.owl-carousel-feedback .owl-stage-outer {
    overflow: hidden;
    border-radius: 20px;
    padding: 1.25rem clamp(1.25rem, 5vw, 2.5rem) 1.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(238, 234, 235, 0.35) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 32px rgba(45, 46, 64, 0.06);
    border: 1px solid rgba(45, 46, 64, 0.06);
}

.owl-carousel-feedback .owl-item {
    float: left;
    box-sizing: border-box;
}

.owl-carousel-feedback .owl-item > .item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.75rem clamp(0.75rem, 3.5vw, 1.75rem);
}

.owl-carousel-feedback .owl-dots {
    text-align: center;
    margin-top: 1.75rem;
    padding-bottom: 0.25rem;
}

.owl-carousel-feedback .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.owl-carousel-feedback .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0;
    background: rgba(45, 46, 64, 0.22);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.owl-carousel-feedback .owl-dots .owl-dot.active span {
    background: var(--ms-accent-light);
    transform: scale(1.25);
    box-shadow: 0 0 0 2px var(--ms-primary);
}

.owl-carousel-feedback .owl-dots .owl-dot:hover span {
    background: rgba(45, 46, 64, 0.45);
}

footer {
    width: 100%;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
    padding-left: var(--container-px);
    padding-right: var(--container-px);
    background-color: #6c63ff;
    background-image:
        radial-gradient(ellipse 70% 60% at 15% 100%, rgba(118, 206, 241, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
        linear-gradient(122deg, #6c63ff 0%, #1088bc 100%);
    color: #f6f6f6;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--ms-accent) 50%, transparent 95%);
    opacity: 0.85;
    pointer-events: none;
}

.footer-brand p {
    line-height: 1.65;
    max-width: 28rem;
    opacity: 0.92;
}

.img-footer {
    width: auto;
    max-width: 220px;
    max-height: 76px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.section-title {
    position: relative;
    width: min(100%, 38rem);
    text-align: center;
    padding-top: clamp(1rem, 2vw, 1.5rem);
}

.section-title h4 {
    font-weight: 700;
    color: var(--ms-text);
    font-size: clamp(1.25rem, 2.8vw, 1.65rem);
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin: 1rem auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--ms-accent), var(--ms-accent-light));
    box-shadow: 0 2px 12px rgba(118, 206, 241, 0.35);
}


.whatsapp-float {
    position: fixed;
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
    width: 58px;
    height: 58px;
    background: radial-gradient(circle at 30% 30%, #3fe687 0%, #25d366 45%, #1da851 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(37, 211, 102, 0.45);
    z-index: 9999;
    border: none;
    transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease;
    cursor: pointer;
    animation: waGlow 2.8s ease-in-out infinite;
}

@keyframes waGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18), 0 0 0 10px rgba(37, 211, 102, 0); }
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float:focus-visible {
    outline: 2px solid var(--ms-accent);
    outline-offset: 3px;
}

.feedback-card-content {
    flex: 1;
    min-width: 0;
    position: relative;
    padding: 0.75rem clamp(0.75rem, 3vw, 1.5rem) 0.85rem clamp(1rem, 3vw, 1.75rem);
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.feedback-card-content::before {
    content: "\201C";
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 0.85;
    color: rgba(118, 206, 241, 0.28);
    position: absolute;
    top: 0.35rem;
    left: clamp(0.75rem, 2vw, 1.25rem);
    pointer-events: none;
    font-weight: 700;
}

.feedback-card-content h5 {
    font-weight: 400;
    line-height: 1.75;
    font-size: clamp(0.95rem, 2.1vw, 1.1rem);
    position: relative;
    z-index: 1;
    padding: 0 0.25rem 0 0.5rem;
    margin: 0;
}

.feedback-card-content p {
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    padding: 0 0.25rem 0 0.5rem;
}

/* Cards genéricos da página (Bootstrap) */
.features-section .card,
.feedback-section .card {
    border-radius: 16px;
    border: 1px solid rgba(45, 46, 64, 0.08);
    box-shadow: 0 8px 24px var(--ms-soft);
}

@keyframes subir-mockup {
    from {
        margin-top: 0vh;
        opacity: 0;
    }

    to {
        margin-top: -15vh;
        opacity: 1;
    }
}

@keyframes subir-mockup-mobile {
    from {
        margin-top: 0vh;
        opacity: 0;
    }

    to {
        margin-top: -10vh;
        opacity: 1;
    }
}

@keyframes subir {
    from {
        margin-top: 30px;
        opacity: 0;
    }

    to {
        margin-top: 10px;
        opacity: 1;
    }
}

/* ——— Tablet ——— */
@media screen and (max-width: 1010px) {
    :root {
        --header-h: 132px;
    }

    .site-header {
        height: auto;
        min-height: 132px;
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        padding: 18px var(--container-px) 20px;
    }

    #cta-header-1 {
        margin-top: 0;
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .main h1 {
        margin-top: 0 !important;
    }

    .mac-body img {
        width: 100%;
        height: 205px;
    }

    .mac-mockup {
        width: 600px;
        max-width: 90%;
        height: 240px;
        animation: subir-mockup-mobile 0.6s ease-out forwards;
    }

    .section-title {
        width: 100%;
    }

    .feedback-section {
        padding-bottom: 2.5rem;
    }

    .feedback-section-header h1 {
        padding: 0;
    }

    .feedback-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feedback-card-avatar-section {
        width: 100%;
    }

    .feedback-card-content h5,
    .feedback-card-content p {
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .feedback-card-content::before {
        left: 50%;
        transform: translateX(-50%);
        top: 0.15rem;
        opacity: 0.4;
    }

    .feedback-card-content h5 {
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .feedback-card-content {
        padding: 0.85rem clamp(1rem, 4vw, 1.75rem) 1rem;
    }

    .feedback-card {
        padding: 1rem clamp(1rem, 4vw, 1.75rem) 1.25rem;
    }

    .owl-carousel-feedback .owl-item > .item {
        padding: 0.85rem clamp(0.85rem, 4vw, 1.5rem);
    }

    .owl-carousel-feedback .owl-stage-outer {
        padding: 1.25rem clamp(1rem, 4vw, 1.75rem) 1.75rem;
    }

    .clients-section {
        padding-top: 0px;
    }

    .main {
        padding-top: calc(var(--header-h) + 2rem);
        padding-bottom: 3rem;
        min-height: auto;
    }

    .main-pattern {
        opacity: 0.35;
    }
}

/* ——— Mobile estreito ——— */
@media screen and (max-width: 576px) {
    :root {
        --section-y: 2.75rem;
    }

    .site-header {
        min-height: auto;
        padding: 14px var(--container-px) 16px;
    }

    .logo-header {
        max-height: 44px;
    }

    .btn-cta-purple {
        font-size: 14px;
        padding: 11px 16px;
    }

    .features-section-card {
        min-height: 0;
    }

    .features-section-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .box-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .taxas-intro h4 {
        font-size: 1.2rem;
    }

    .owl-carousel-feedback .owl-stage-outer {
        padding: 1rem clamp(0.85rem, 4vw, 1.25rem) 1.5rem;
    }

    .owl-carousel-feedback .owl-item > .item {
        padding: 0.65rem clamp(0.65rem, 3vw, 1rem);
    }

    .feedback-card {
        padding: 0.85rem clamp(0.75rem, 3vw, 1.1rem);
    }

    .feedback-card-content {
        padding: 0.75rem clamp(0.65rem, 3vw, 1rem);
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: max(16px, env(safe-area-inset-bottom));
        right: max(16px, env(safe-area-inset-right));
    }
}
