/*
|--------------------------------------------------------------------------
| BLOCO 01 - Variáveis globais
|--------------------------------------------------------------------------
*/

:root {
    --vp-bg: #f7fbff;
    --vp-bg-soft: #eaf3ff;
    --vp-surface: #ffffff;
    --vp-text: #142038;
    --vp-muted: #53657f;
    --vp-primary: #2457ff;
    --vp-primary-dark: #173fc4;
    --vp-blue-soft: #dfeaff;
    --vp-green: #19b77a;
    --vp-orange: #ff9f1c;
    --vp-pink: #f044aa;
    --vp-border: rgba(20, 32, 56, 0.11);
    --vp-shadow: 0 28px 80px rgba(30, 45, 80, 0.16);
    --vp-shadow-strong: 0 34px 90px rgba(36, 87, 255, 0.20);
    --vp-radius: 34px;
    --vp-container: 1240px;
    --vp-header-height: 88px;
}

/*
|--------------------------------------------------------------------------
| BLOCO 02 - Reset base
|--------------------------------------------------------------------------
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--vp-text);
    background: var(--vp-bg);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

.vp-container {
    width: min(100% - 48px, var(--vp-container));
    margin-inline: auto;
}

.vp-screen-root {
    min-height: 100vh;
}

/*
|--------------------------------------------------------------------------
| BLOCO 03 - Header PC
|--------------------------------------------------------------------------
*/

.vp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--vp-header-height);
    background: rgba(248, 251, 255, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(20, 32, 56, 0.08);
    box-shadow: 0 18px 46px rgba(30, 45, 80, 0.08);
}

.vp-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -28px;
    width: 520px;
    height: 56px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(36, 87, 255, 0.00), rgba(36, 87, 255, 0.18), rgba(36, 87, 255, 0.00));
    filter: blur(30px);
    pointer-events: none;
}

.vp-header-inner {
    min-height: var(--vp-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.vp-logo {
    width: 188px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border-radius: 22px;
}

.vp-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vp-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--vp-muted);
    font-size: 15px;
    font-weight: 700;
}

.vp-nav a {
    position: relative;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.vp-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: var(--vp-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.vp-nav a:hover {
    color: var(--vp-primary);
}

.vp-nav a:hover::after {
    transform: scaleX(1);
}

.vp-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #2457ff 0%, #1843d8 100%);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(36, 87, 255, 0.28);
}

/*
|--------------------------------------------------------------------------
| BLOCO 04 - Botões e elementos reutilizáveis
|--------------------------------------------------------------------------
*/

.vp-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 9px 15px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(36, 87, 255, 0.12), rgba(25, 183, 122, 0.10));
    color: var(--vp-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.vp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.vp-btn,
.vp-link-button {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 900;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.vp-btn:hover,
.vp-link-button:hover {
    transform: translateY(-2px);
}

.vp-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #2457ff 0%, #1843d8 100%);
    box-shadow: 0 18px 38px rgba(36, 87, 255, 0.32);
}

.vp-btn-secondary {
    color: var(--vp-text);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--vp-border);
}

.vp-link-button {
    margin-top: 18px;
    color: #ffffff;
    background: var(--vp-text);
    box-shadow: 0 18px 36px rgba(20, 32, 56, 0.16);
}

/*
|--------------------------------------------------------------------------
| BLOCO 05 - Hero PC
|--------------------------------------------------------------------------
*/

.vp-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 46px 0 54px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 12%, rgba(36, 87, 255, 0.18), transparent 30%),
        radial-gradient(circle at 70% 18%, rgba(25, 183, 122, 0.14), transparent 28%),
        radial-gradient(circle at 88% 72%, rgba(255, 159, 28, 0.16), transparent 28%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 44%, #eef5ff 100%);
}

.vp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(36, 87, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 87, 255, 0.055) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 50% 44%, black, transparent 74%);
    pointer-events: none;
}

.vp-hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(42px);
    opacity: 0.58;
    pointer-events: none;
}

.vp-hero-orb-one {
    width: 230px;
    height: 230px;
    left: 7%;
    bottom: 8%;
    background: rgba(36, 87, 255, 0.18);
}

.vp-hero-orb-two {
    width: 260px;
    height: 260px;
    right: 9%;
    top: 10%;
    background: rgba(255, 159, 28, 0.18);
}

.vp-hero-orb-three {
    width: 220px;
    height: 220px;
    left: 52%;
    top: 14%;
    background: rgba(25, 183, 122, 0.15);
}

.vp-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 34px;
}

.vp-hero-content {
    max-width: 610px;
}

.vp-hero h1,
.vp-section h2,
.vp-storyboard-header h2,
.vp-testimonials-header h2 {
    margin: 0;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.vp-hero h1 {
    font-size: clamp(48px, 5.3vw, 76px);
    max-width: 680px;
}

.vp-hero p,
.vp-section p,
.vp-storyboard-header p,
.vp-testimonials-header p {
    color: var(--vp-muted);
    line-height: 1.75;
    font-size: 18px;
}

.vp-hero p {
    max-width: 560px;
    margin: 24px 0 0;
}

.vp-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.vp-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(20, 32, 56, 0.10);
    color: var(--vp-muted);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(30, 45, 80, 0.08);
}

.vp-trust-row svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--vp-primary);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/*
|--------------------------------------------------------------------------
| BLOCO 06 - Hero imagem / mídia
|--------------------------------------------------------------------------
*/

.vp-hero-media {
    position: relative;
    width: 100%;
}

.vp-photo-card {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 38px;
    overflow: hidden;
    background: #dfeaff;
    box-shadow: 0 34px 110px rgba(36, 87, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.92);
    animation: vpHeroFloat 7s ease-in-out infinite;
}

.vp-photo-card::before {
    content: "";
    position: absolute;
    inset: 22px;
    z-index: 3;
    border-radius: 30px;
    border: 1px dashed rgba(255, 255, 255, 0.55);
    pointer-events: none;
}

.vp-hero-family-photo {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.12) contrast(1.04);
}

.vp-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(14, 28, 55, 0.08), rgba(14, 28, 55, 0.00) 48%),
        linear-gradient(180deg, rgba(14, 28, 55, 0.00) 42%, rgba(14, 28, 55, 0.26) 100%);
    pointer-events: none;
}

.vp-process-card {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 42px;
    width: min(68%, 390px);
    min-height: 164px;
    transform: translateX(-50%);
    padding: 24px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 28px 80px rgba(20, 32, 56, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: vpProcessPulse 6s ease-in-out infinite;
}

.vp-process-card span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(36, 87, 255, 0.10);
    color: var(--vp-primary);
    font-size: 13px;
    font-weight: 900;
}

.vp-process-card strong {
    display: block;
    margin-top: 18px;
    font-size: 26px;
    letter-spacing: -0.04em;
    color: var(--vp-text);
}

.vp-process-card small {
    display: block;
    margin-top: 9px;
    color: var(--vp-muted);
    font-size: 14px;
}

.vp-process-progress {
    width: 74%;
    height: 8px;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(36, 87, 255, 0.13);
    overflow: hidden;
}

.vp-process-progress span {
    display: block;
    width: 75%;
    height: 100%;
    padding: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--vp-primary), var(--vp-green), var(--vp-primary));
    background-size: 200% 100%;
    animation: vpProgressMove 3.4s ease-in-out infinite;
}

.vp-process-card em {
    position: absolute;
    right: 26px;
    bottom: 22px;
    color: var(--vp-text);
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
}

.vp-floating-card {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--vp-text);
    box-shadow: 0 18px 42px rgba(20, 32, 56, 0.20);
    font-weight: 900;
    font-size: 14px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: vpFloatingTag 5s ease-in-out infinite;
}

.vp-floating-card svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    fill: none;
    stroke: var(--vp-primary);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vp-floating-one {
    top: 64px;
    left: 54px;
}

.vp-floating-two {
    top: 126px;
    right: 42px;
    animation-delay: 1.2s;
}

.vp-floating-three {
    top: 244px;
    left: 72px;
    bottom: auto;
    animation-delay: 2.2s;
}

/*
|--------------------------------------------------------------------------
| BLOCO 07 - Acessos principais
|--------------------------------------------------------------------------
*/

.vp-access-strip {
    position: relative;
    z-index: 4;
    margin-top: 0;
    padding: 54px 0 72px;
    background:
        radial-gradient(circle at 15% 40%, rgba(36, 87, 255, 0.08), transparent 28%),
        radial-gradient(circle at 82% 30%, rgba(25, 183, 122, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(238, 245, 255, 0.45), #ffffff);
}

.vp-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: center;
}

.vp-access-item {
    position: relative;
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 24px;
    align-items: center;
    min-height: 230px;
    padding: 18px 0;
}

.vp-access-image {
    width: 132px;
    height: 168px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.20)),
        linear-gradient(135deg, rgba(36, 87, 255, 0.13), rgba(25, 183, 122, 0.10));
    box-shadow: 0 24px 58px rgba(30, 45, 80, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.92);
    animation: vpAccessImageFloat 6.5s ease-in-out infinite;
}

.vp-access-item:nth-child(2) .vp-access-image {
    animation-delay: 0.8s;
}

.vp-access-item:nth-child(3) .vp-access-image {
    animation-delay: 1.5s;
}

.vp-access-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) contrast(1.03);
}

.vp-access-image-fallback::after {
    content: "";
    width: 66px;
    height: 66px;
    display: block;
    margin: 51px auto 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.30)),
        linear-gradient(135deg, var(--vp-primary), var(--vp-green));
    box-shadow: 0 18px 38px rgba(36, 87, 255, 0.22);
}

.vp-access-text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 168px;
}

.vp-access-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(36, 87, 255, 0.13), rgba(25, 183, 122, 0.10));
    margin-bottom: 16px;
}

.vp-access-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--vp-primary);
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vp-access-item h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.045em;
    color: var(--vp-text);
}

.vp-access-item p {
    margin: 12px 0 20px;
    color: var(--vp-muted);
    line-height: 1.65;
    font-size: 16px;
}

.vp-access-item button,
.vp-access-item a {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--vp-text);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(20, 32, 56, 0.14);
}

/*
|--------------------------------------------------------------------------
| BLOCO 08 - Storyboard / Fluxo visual
|--------------------------------------------------------------------------
*/

.vp-storyboard-section {
    position: relative;
    padding: 104px 0 112px;
    background:
        radial-gradient(circle at 14% 22%, rgba(255, 159, 28, 0.08), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(36, 87, 255, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
    overflow: hidden;
}

.vp-storyboard-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(36, 87, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 87, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.vp-storyboard-header {
    position: relative;
    z-index: 3;
    max-width: 820px;
    margin-bottom: 54px;
}

.vp-storyboard-header h2,
.vp-testimonials-header h2 {
    font-size: clamp(36px, 4.4vw, 58px);
}

.vp-storyboard-flow {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vp-storyboard-route {
    position: absolute;
    left: 7%;
    right: 7%;
    top: 78px;
    height: 3px;
    z-index: 20;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 50%, transparent 50%);
    background-size: 18px 3px;
    background-repeat: repeat-x;
    opacity: 0.98;
    pointer-events: none;
    filter:
        drop-shadow(0 2px 5px rgba(255, 255, 255, 0.90))
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.72));
    animation: vpRouteLineMove 4.8s linear infinite;
}

.vp-storyboard-route::before,
.vp-storyboard-route::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 13px;
    height: 13px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 0 0 7px rgba(255, 255, 255, 0.30),
        0 0 18px rgba(255, 255, 255, 0.86),
        0 10px 24px rgba(255, 255, 255, 0.42);
}

.vp-storyboard-route::before {
    left: 0;
}

.vp-storyboard-route::after {
    right: 0;
}

.vp-storyboard-plane {
    position: absolute;
    left: 0;
    top: -17px;
    z-index: 21;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.98);
    animation: vpStoryPlaneMove 9s ease-in-out infinite;
    filter: none;
}

.vp-storyboard-plane svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.18);
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vp-story-step {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.vp-story-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1.35 / 1;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.20)),
        linear-gradient(135deg, rgba(36, 87, 255, 0.12), rgba(25, 183, 122, 0.08));
    box-shadow: 0 24px 64px rgba(30, 45, 80, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.92);
    margin-bottom: 22px;
    animation: vpStoryImageFloat 7s ease-in-out infinite;
}

.vp-story-step:nth-child(3) .vp-story-image {
    animation-delay: 0.7s;
}

.vp-story-step:nth-child(4) .vp-story-image {
    animation-delay: 1.4s;
}

.vp-story-step:nth-child(5) .vp-story-image {
    animation-delay: 2.1s;
}

.vp-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) contrast(1.03);
}

.vp-story-image-fallback::after {
    content: "";
    width: 72px;
    height: 72px;
    display: block;
    margin: 46px auto 0;
    border-radius: 26px;
    background:
        radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.28)),
        linear-gradient(135deg, var(--vp-primary), var(--vp-green));
    box-shadow: 0 18px 38px rgba(36, 87, 255, 0.22);
}

.vp-story-text {
    position: relative;
    z-index: 2;
    padding-left: 4px;
}

.vp-story-step h3 {
    margin: 0;
    font-size: 25px;
    letter-spacing: -0.045em;
}

.vp-story-step p {
    margin: 12px 0 0;
    color: var(--vp-muted);
    line-height: 1.65;
}

/*
|--------------------------------------------------------------------------
| BLOCO 09 - Seções principais
|--------------------------------------------------------------------------
*/

.vp-section {
    position: relative;
    padding: 96px 0;
    background: #ffffff;
}

.vp-platform-section {
    background:
        radial-gradient(circle at 15% 12%, rgba(36, 87, 255, 0.10), transparent 32%),
        #ffffff;
}

.vp-app-section {
    background:
        radial-gradient(circle at 78% 12%, rgba(36, 87, 255, 0.12), transparent 32%),
        radial-gradient(circle at 20% 70%, rgba(25, 183, 122, 0.10), transparent 30%),
        linear-gradient(135deg, #eef5ff 0%, #ffffff 58%, #f7fbff 100%);
}

.vp-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.vp-section h2 {
    font-size: clamp(36px, 4.4vw, 58px);
}

.vp-section-content p {
    max-width: 620px;
}

.vp-feature-card,
.vp-app-preview,
.vp-contact-card {
    border: 1px solid var(--vp-border);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--vp-shadow);
    border-radius: var(--vp-radius);
}

.vp-feature-card {
    padding: 40px;
}

.vp-feature-card h3 {
    margin: 0 0 22px;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.vp-feature-card ul {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--vp-muted);
}

.vp-feature-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.vp-feature-card li span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(36, 87, 255, 0.10);
}

.vp-feature-card svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--vp-primary);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/*
|--------------------------------------------------------------------------
| BLOCO 10 - App preview
|--------------------------------------------------------------------------
*/

.vp-app-preview {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* remove o card branco grande de trás */
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.vp-phone-preview {
    position: relative;
    width: 310px;
    height: 630px;
    padding: 8px;
    border-radius: 44px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(223, 234, 255, 0.88)),
        #ffffff;
    box-shadow:
        0 36px 100px rgba(30, 45, 80, 0.28),
        0 0 0 1px rgba(20, 32, 56, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.94);
    overflow: hidden;
    animation: vpHeroFloat 7s ease-in-out infinite;
}

.vp-phone-preview::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 50%;
    z-index: 5;
    width: 92px;
    height: 24px;
    transform: translateX(-50%);
    border-radius: 0 0 18px 18px;
    background: rgba(20, 32, 56, 0.72);
    box-shadow: 0 8px 18px rgba(20, 32, 56, 0.18);
}

.vp-app-screen-image {
    position: absolute;
    inset: 8px;
    z-index: 1;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    object-fit: cover;
    object-position: center;

    /* máscara arredondada da imagem */
    border-radius: 36px;
    overflow: hidden;

    filter: saturate(1.05) contrast(1.03);
}

.vp-phone-reflection {
    position: absolute;
    inset: 8px;
    z-index: 4;
    border-radius: 36px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 48%);
    pointer-events: none;
}

.vp-phone-preview::after {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: 3;
    border-radius: 36px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.38),
        inset 0 -24px 44px rgba(20, 32, 56, 0.10);
    pointer-events: none;
}

.vp-phone-preview-fallback {
    display: grid;
    place-items: center;
}

.vp-phone-preview-fallback::after {
    content: "Prévia do app não encontrada";
    position: relative;
    z-index: 5;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--vp-text);
    font-weight: 900;
    text-align: center;
}

/*
|--------------------------------------------------------------------------
| BLOCO 11 - Depoimentos / Slider Embla
|--------------------------------------------------------------------------
*/

.vp-testimonials-section {
    position: relative;
    padding: 96px 0;
    background:
        radial-gradient(circle at 82% 20%, rgba(25, 183, 122, 0.10), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(36, 87, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    overflow: hidden;
}

.vp-testimonials-header {
    margin-bottom: 28px;
}

.vp-testimonials-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.vp-testimonials-title-row h2 {
    max-width: 820px;
    font-size: clamp(36px, 4.4vw, 58px);
}

.vp-testimonials-title-row p {
    max-width: 760px;
    margin: 18px 0 0;
}

.vp-testimonial-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    margin-bottom: 8px;
}

.vp-testimonial-controls button {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--vp-text);
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 14px 30px rgba(20, 32, 56, 0.16);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
}

.vp-testimonial-controls button:hover {
    transform: translateY(-2px);
    background: var(--vp-primary);
}

.vp-testimonial-controls button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.vp-testimonial-slider {
    position: relative;
    width: 100%;
    background: transparent;
    box-shadow: none;
}

.vp-testimonial-slider::before,
.vp-testimonial-slider::after {
    display: none;
    content: none;
}

.vp-testimonial-viewport {
    width: 100%;
    overflow: hidden;
    background: transparent;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.vp-testimonial-viewport.is-dragging {
    cursor: grabbing;
}

.vp-testimonial-track {
    display: flex;
    align-items: stretch;
    background: transparent;
    will-change: transform;
}

.vp-testimonial-slide {
    flex: 0 0 calc(100% / 3);
    min-width: 0;
    padding: 36px 34px 56px;
}

.vp-testimonial-card {
    height: 100%;
    min-height: 315px;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(20, 32, 56, 0.09);
    box-shadow:
        0 18px 32px rgba(30, 45, 80, 0.10),
        0 1px 0 rgba(255, 255, 255, 0.92) inset;
    user-select: none;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.vp-testimonial-card * {
    user-select: none;
}

.vp-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(36, 87, 255, 0.16);
    box-shadow:
        0 24px 42px rgba(36, 87, 255, 0.14),
        0 1px 0 rgba(255, 255, 255, 0.94) inset;
}

.vp-testimonial-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.vp-testimonial-avatar {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(36, 87, 255, 0.18), rgba(25, 183, 122, 0.16)),
        #ffffff;
    box-shadow: 0 10px 24px rgba(30, 45, 80, 0.12);
}

.vp-testimonial-avatar::after {
    content: attr(data-initials);
    color: var(--vp-primary);
    font-size: 18px;
    font-weight: 900;
}

.vp-testimonial-avatar img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-testimonial-top strong {
    display: block;
    color: var(--vp-text);
    font-size: 17px;
    font-weight: 900;
}

.vp-testimonial-top span {
    display: block;
    margin-top: 4px;
    color: var(--vp-muted);
    font-size: 14px;
}

.vp-testimonial-video-button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--vp-primary), var(--vp-green));
    box-shadow: 0 12px 26px rgba(36, 87, 255, 0.20);
}

.vp-testimonial-video-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vp-stars {
    color: var(--vp-orange);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.vp-testimonial-card p {
    margin: 0;
    color: var(--vp-text);
    font-size: 17px;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .vp-testimonial-slide {
        flex-basis: 50%;
    }
}

@media (max-width: 700px) {
    .vp-testimonials-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .vp-testimonial-slide {
        flex-basis: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| BLOCO 11.1 - Modal do depoimento
|--------------------------------------------------------------------------
*/

.vp-testimonial-modal[hidden] {
    display: none;
}

.vp-testimonial-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: grid;
    place-items: center;
    padding: 32px;
}

.vp-testimonial-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 32, 56, 0.52);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.vp-testimonial-modal-card {
    position: relative;
    z-index: 2;
    width: min(100%, 900px);
    display: grid;
    grid-template-columns: 0.88fr 1fr;
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 34px 110px rgba(20, 32, 56, 0.34);
    animation: vpModalIn 0.28s ease both;
}

.vp-testimonial-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(20, 32, 56, 0.08);
    color: var(--vp-text);
    font-size: 28px;
    line-height: 1;
}

.vp-testimonial-modal-video {
    min-height: 420px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(36, 87, 255, 0.22), transparent 46%),
        linear-gradient(135deg, #eef5ff, #ffffff);
}

.vp-testimonial-modal-video video,
.vp-testimonial-modal-video iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    object-fit: cover;
}

.vp-testimonial-modal-video-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--vp-primary), var(--vp-green));
    box-shadow: 0 24px 60px rgba(36, 87, 255, 0.30);
}

.vp-testimonial-modal-video-placeholder svg {
    width: 54px;
    height: 54px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vp-testimonial-modal-content {
    padding: 46px;
}

.vp-testimonial-modal-content h2 {
    margin: 0;
    font-size: 42px;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.vp-testimonial-modal-content strong {
    display: block;
    margin-top: 10px;
    color: var(--vp-primary);
    font-weight: 900;
}

.vp-testimonial-modal-content p {
    margin: 22px 0 0;
    color: var(--vp-text);
    font-size: 18px;
    line-height: 1.75;
}

.vp-testimonial-instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 26px;
    padding: 0 22px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    font-weight: 900;
}

@media (max-width: 1100px) {
    .vp-testimonial-slide {
        flex-basis: calc((100% - 28px) / 2);
    }
}

@media (max-width: 700px) {
    .vp-testimonials-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .vp-testimonial-slide {
        flex-basis: 100%;
    }

    .vp-testimonial-modal-card {
        grid-template-columns: 1fr;
    }
}

/*
|--------------------------------------------------------------------------
| BLOCO 12 - Contato
|--------------------------------------------------------------------------
*/

.vp-contact-section {
    background:
        radial-gradient(circle at 76% 28%, rgba(255, 159, 28, 0.13), transparent 28%),
        #ffffff;
}

.vp-contact-card {
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 255, 0.84)),
        #ffffff;
}

.vp-contact-card h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
}

.vp-contact-card p {
    max-width: 650px;
    margin-bottom: 0;
}

.vp-contact-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 300px;
}

.vp-contact-actions .vp-btn {
    width: 100%;
}

.vp-contact-whatsapp {
    width: 100%;
    min-height: 54px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 18px 40px rgba(18, 140, 126, 0.30);
    font-size: 16px;
    font-weight: 900;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.vp-contact-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(18, 140, 126, 0.38);
    filter: saturate(1.05);
}

.vp-contact-whatsapp svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    fill: currentColor;
}

.vp-contact-whatsapp span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/*
|--------------------------------------------------------------------------
| BLOCO 13 - Rodapé
|--------------------------------------------------------------------------
*/

.vp-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--vp-border);
    background:
        radial-gradient(circle at 52% 16%, rgba(36, 87, 255, 0.13), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #eaf3ff 100%);
    padding: 42px 0;
    color: var(--vp-muted);
    font-size: 14px;
}

.vp-footer-inner {
    min-height: 112px;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 86px;
}

.vp-footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    min-width: 160px;
    text-align: left;
}

.vp-footer-info span:first-child {
    color: var(--vp-text);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.vp-footer-info span:last-child {
    color: var(--vp-muted);
    font-weight: 500;
}

.vp-footer-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 96px;
}

.vp-logo-rotator {
    position: relative;
    width: 250px;
    height: 86px;
    overflow: hidden;
    border-radius: 22px;
}

.vp-rotator-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0);
    transition:
        opacity 1.15s ease,
        visibility 1.15s ease;
}

.vp-rotator-item.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.vp-rotator-item img {
    width: 100%;
    height: 100%;
    max-width: 230px;
    max-height: 76px;
    object-fit: contain;
    object-position: center;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition:
        max-width 0.22s ease,
        max-height 0.22s ease,
        opacity 0.22s ease;
}

.vp-rotator-item.has-logo-error::after {
    content: attr(data-logo-label);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(23, 32, 51, 0.06);
    color: var(--vp-text);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

/*
|--------------------------------------------------------------------------
| BLOCO 14 - Botões flutuantes
|--------------------------------------------------------------------------
*/

.vp-floating-actions {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.vp-floating-whatsapp-button {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 20px 46px rgba(18, 140, 126, 0.34);
    animation: vpFloatingAccessPulse 2.8s ease-in-out infinite;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vp-floating-whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(18, 140, 126, 0.40);
}

.vp-floating-whatsapp-button svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.vp-floating-access-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #2457ff 0%, #19b77a 100%);
    box-shadow: 0 22px 50px rgba(36, 87, 255, 0.34);
    font-weight: 900;
    animation: vpFloatingAccessPulse 2.8s ease-in-out infinite;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vp-floating-access-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 60px rgba(36, 87, 255, 0.40);
}

.vp-floating-access-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/*
|--------------------------------------------------------------------------
| BLOCO 15 - Modal de acesso
|--------------------------------------------------------------------------
*/

.vp-access-modal[hidden] {
    display: none;
}

.vp-access-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 32px;
}

.vp-access-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 32, 56, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.vp-access-modal-card {
    position: relative;
    z-index: 2;
    width: min(100%, 640px);
    padding: 38px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(36, 87, 255, 0.12), transparent 32%),
        #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.90);
    box-shadow: 0 34px 110px rgba(20, 32, 56, 0.34);
    animation: vpModalIn 0.28s ease both;
}

.vp-access-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(20, 32, 56, 0.07);
    color: var(--vp-text);
    font-size: 28px;
    line-height: 1;
}

.vp-access-modal-header h2 {
    margin: 0;
    max-width: 500px;
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.vp-access-modal-header p {
    margin: 16px 0 0;
    max-width: 520px;
    color: var(--vp-muted);
    font-size: 17px;
    line-height: 1.65;
}

.vp-access-modal-options {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.vp-access-option {
    width: 100%;
    border: 1px solid rgba(20, 32, 56, 0.10);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vp-access-option:hover:not(.is-disabled) {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(36, 87, 255, 0.18);
}

.vp-access-option-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(36, 87, 255, 0.11);
}

.vp-access-option-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--vp-primary);
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vp-access-option strong {
    display: block;
    color: var(--vp-text);
    font-size: 18px;
    font-weight: 900;
}

.vp-access-option small {
    display: block;
    margin-top: 4px;
    color: var(--vp-muted);
}

.vp-access-option.is-disabled {
    opacity: 0.58;
    cursor: not-allowed;
}

/*
|--------------------------------------------------------------------------
| BLOCO 16 - Tela não suportada
|--------------------------------------------------------------------------
*/

.vp-unsupported {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px;
    background:
        radial-gradient(circle at top right, rgba(36, 87, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.vp-unsupported-card {
    width: min(100%, 560px);
    padding: 42px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--vp-shadow);
    border: 1px solid var(--vp-border);
    text-align: center;
}

.vp-unsupported-card img {
    width: 180px;
    height: auto;
    margin: 0 auto 24px;
}

.vp-unsupported-card h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.vp-unsupported-card p {
    margin: 18px auto 0;
    max-width: 460px;
    color: var(--vp-muted);
    font-size: 17px;
    line-height: 1.7;
}

/*
|--------------------------------------------------------------------------
| BLOCO 17 - Scroll reveal
|--------------------------------------------------------------------------
*/

.vp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.vp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*
|--------------------------------------------------------------------------
| BLOCO 18 - Animações
|--------------------------------------------------------------------------
*/

@keyframes vpHeroFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes vpFloatingTag {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes vpProcessPulse {
    0%, 100% {
        box-shadow: 0 28px 80px rgba(20, 32, 56, 0.24);
    }

    50% {
        box-shadow: 0 34px 90px rgba(36, 87, 255, 0.32);
    }
}

@keyframes vpProgressMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes vpFloatingAccessPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 22px 50px rgba(36, 87, 255, 0.34);
    }

    50% {
        transform: translateY(-4px);
        box-shadow: 0 26px 60px rgba(25, 183, 122, 0.34);
    }
}

@keyframes vpModalIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes vpAccessImageFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-7px) rotate(-1deg);
    }
}

@keyframes vpStoryImageFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes vpRouteLineMove {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 36px;
    }
}

@keyframes vpStoryPlaneMove {
    0% {
        left: 0%;
        opacity: 0;
        transform: translateY(0) rotate(0deg) scale(0.88);
    }

    12% {
        opacity: 1;
    }

    72% {
        left: calc(100% - 36px);
        opacity: 1;
        transform: translateY(-4px) rotate(2deg) scale(1);
    }

    100% {
        left: calc(100% - 36px);
        opacity: 0;
        transform: translateY(-4px) rotate(2deg) scale(0.92);
    }
}

/*
|--------------------------------------------------------------------------
| BLOCO 19 - Ajustes de telas menores
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {
    .vp-hero-grid,
    .vp-two-columns {
        grid-template-columns: 1fr;
    }

    .vp-storyboard-grid,
    .vp-testimonials-grid,
    .vp-access-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-nav {
        gap: 16px;
        font-size: 14px;
    }
}

@media (max-width: 700px) {
    .vp-storyboard-grid,
    .vp-testimonials-grid,
    .vp-access-grid {
        grid-template-columns: 1fr;
    }

    .vp-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .vp-contact-actions {
        width: 100%;
        min-width: auto;
        align-items: stretch;
    }

    .vp-contact-whatsapp {
        align-self: center;
    }

    .vp-contact-actions .vp-btn {
        width: 100%;
    }

    .vp-footer-inner {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 22px;
        text-align: center;
    }

    .vp-footer-info {
        align-items: center;
        text-align: center;
        min-width: auto;
    }

    .vp-floating-actions {
        right: 18px;
        bottom: 18px;
        gap: 10px;
    }

    .vp-floating-whatsapp-button {
        width: 58px;
        height: 58px;
    }

    .vp-floating-access-button span {
        display: none;
    }

    .vp-floating-access-button {
        width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 0;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vp-photo-card,
    .vp-floating-card,
    .vp-process-card,
    .vp-process-progress span,
    .vp-floating-whatsapp-button,
    .vp-floating-access-button,
    .vp-reveal {
        animation: none;
        transition: none;
    }

    .vp-reveal {
        opacity: 1;
        transform: none;
    }
}

/*
|--------------------------------------------------------------------------
| BLOCO EXTRA - Imagem da Plataforma Web
|--------------------------------------------------------------------------
*/

.vp-platform-visual {
    position: relative;
}

.vp-platform-photo-card {
    position: relative;
    min-height: 470px;
    border-radius: 36px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(36, 87, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #eef5ff 0%, #ffffff 100%);
    box-shadow: 0 34px 100px rgba(30, 45, 80, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.94);
}

.vp-platform-photo-card::before {
    content: "";
    position: absolute;
    inset: 22px;
    z-index: 3;
    border-radius: 28px;
    border: 1px dashed rgba(255, 255, 255, 0.62);
    pointer-events: none;
}

.vp-platform-photo {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) contrast(1.03);
}

.vp-platform-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(20, 32, 56, 0.03), rgba(20, 32, 56, 0.00) 46%),
        linear-gradient(180deg, rgba(20, 32, 56, 0.00) 40%, rgba(20, 32, 56, 0.20) 100%);
    pointer-events: none;
}

.vp-platform-badge {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--vp-text);
    box-shadow: 0 18px 42px rgba(20, 32, 56, 0.18);
    font-size: 14px;
    font-weight: 900;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: vpFloatingTag 5s ease-in-out infinite;
}

.vp-platform-badge svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--vp-primary);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vp-platform-badge-one {
    top: 54px;
    left: 48px;
}

.vp-platform-badge-two {
    top: 54px;
    right: 48px;
    animation-delay: 1.1s;
}

.vp-platform-badge-three {
    left: 48px;
    bottom: 50px;
    animation-delay: 2.1s;
}

.vp-platform-photo-fallback {
    display: grid;
    place-items: center;
}

.vp-platform-photo-fallback::after {
    content: "Imagem da plataforma não encontrada";
    position: relative;
    z-index: 4;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--vp-text);
    font-weight: 900;
}