/*
  Projeto por João Alberto Oliveira
  © Direitos intelectuais reservados a João Alberto e Conectfy.
  É proibida a redistribuição, cópia ou reuso sem autorização prévia.
  Precisa de ajuda? WhatsApp (11) 91700-1991
*/
/* ============================================
   CONECTFY — Modern Fiber Provider
   Palette extracted from brand assets
   ============================================ */

:root {
    /* Brand palette */
    --purple-900: #1B0536;
    --purple-800: #2A0A52;
    --purple-700: #3D1170;
    --purple-600: #571A96;
    --purple-500: #7B2CBF;
    --purple-400: #9D4EDD;
    --purple-300: #C77DFF;
    --magenta-600: #C6197C;
    --magenta-500: #E91E8C;
    --pink-500: #F72585;
    --pink-400: #FF4FA3;

    --white: #ffffff;
    --light: #F3EAFB;
    --muted: #BCA5D6;
    --dark-ink: #12032A;

    /* Gradients */
    --grad-brand: linear-gradient(135deg, var(--pink-500) 0%, var(--magenta-500) 40%, var(--purple-500) 100%);
    --grad-numbers: linear-gradient(135deg, #FFFFFF 0%, #FFD1E8 45%, #FF9FCB 100%);
    --grad-deep: linear-gradient(160deg, #1B0536 0%, #2F0B58 45%, #4C1589 100%);
    --grad-glow: radial-gradient(circle at 30% 30%, rgba(247, 37, 133, 0.55) 0%, rgba(157, 78, 221, 0) 60%);

    /* UI */
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --shadow-sm: 0 4px 16px rgba(27, 5, 54, 0.25);
    --shadow: 0 18px 50px rgba(27, 5, 54, 0.35);
    --shadow-lg: 0 30px 80px rgba(27, 5, 54, 0.5);
    --shadow-glow: 0 0 40px rgba(247, 37, 133, 0.4);

    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;

    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--dark-ink);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: var(--grad-deep);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
    animation: float-blob 22s ease-in-out infinite;
}

.blob-1 {
    width: 520px; height: 520px;
    background: var(--pink-500);
    top: -120px; left: -100px;
}

.blob-2 {
    width: 640px; height: 640px;
    background: var(--purple-400);
    top: 40%; right: -200px;
    animation-delay: -7s;
    animation-duration: 28s;
}

.blob-3 {
    width: 480px; height: 480px;
    background: var(--magenta-500);
    bottom: -140px; left: 30%;
    animation-delay: -14s;
    animation-duration: 25s;
    opacity: 0.45;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.08); }
    66% { transform: translate(-50px, 50px) scale(0.95); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(27, 5, 54, 0.75);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s var(--ease-out);
}

.logo-wrap:hover { transform: scale(1.03); }

.logo-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 4px 18px rgba(247, 37, 133, 0.35));
    transition: filter 0.35s var(--ease-out);
}

.logo-badge img {
    height: 62px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar.scrolled .logo-badge img { height: 52px; }

.logo-wrap:hover .logo-badge {
    filter: drop-shadow(0 6px 22px rgba(247, 37, 133, 0.55));
}

.logo-badge-sm img { height: 54px; }

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-links a {
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    color: var(--light);
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}
.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* WhatsApp icon sizes (PNG) */
.wa-ico {
    display: inline-block;
    object-fit: contain;
    flex-shrink: 0;
}
.wa-ico-sm { width: 18px; height: 18px; }
.wa-ico-md { width: 22px; height: 22px; }
.wa-ico-lg { width: 26px; height: 26px; }

.btn-primary {
    background: var(--grad-brand);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(247, 37, 133, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s var(--ease-out);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(247, 37, 133, 0.55), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-primary:hover::before { left: 100%; }

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 0.95fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-content { max-width: 560px; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--light);
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
    animation: fadeUp 0.8s var(--ease-out) both;
}

.pill-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--pink-500);
    box-shadow: 0 0 0 4px rgba(247, 37, 133, 0.25);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(247, 37, 133, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(247, 37, 133, 0.1); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeUp 0.9s var(--ease-out) 0.1s both;
}

.gradient-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-accent {
    color: var(--pink-500);
    -webkit-text-fill-color: var(--pink-500);
}

.hero-lead {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--light);
    margin-bottom: 40px;
    max-width: 540px;
    animation: fadeUp 0.9s var(--ease-out) 0.2s both;
}

.hero-lead strong { color: var(--white); font-weight: 700; }

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeUp 0.9s var(--ease-out) 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    width: fit-content;
    animation: fadeUp 0.9s var(--ease-out) 0.4s both;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat span {
    font-size: 12px;
    color: var(--muted);
}

.stat-sep {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

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

/* ============================================
   HERO VISUAL / SLIDER
   ============================================ */
.hero-visual {
    position: relative;
    width: 100%;
    animation: fadeUp 1s var(--ease-out) 0.4s both;
}

.visual-orb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 105%; height: 105%;
    background: var(--grad-brand);
    border-radius: 40%;
    filter: blur(90px);
    opacity: 0.28;
    animation: orb-pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes orb-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -50%) scale(1.08) rotate(25deg); }
}

.hero-slider {
    position: relative;
    z-index: 2;
}

.slider-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #1B0536;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(247, 37, 133, 0.12);
    aspect-ratio: 16 / 9;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.9s var(--ease-out), transform 6s ease-out;
    pointer-events: none;
}

.slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(27, 5, 54, 0.55);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.35s var(--ease-out);
    z-index: 3;
}

.slider-frame:hover .slider-arrow { opacity: 1; }

.slider-arrow:hover {
    background: var(--grad-brand);
    border-color: transparent;
    transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 14px; }
.slider-next { right: 14px; }

.slider-progress {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 3;
}

.sp-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--grad-brand);
    box-shadow: 0 0 10px rgba(247, 37, 133, 0.6);
    transition: width 0.1s linear;
}

.sp-bar.running { width: 100%; transition: width 5s linear; }

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s var(--ease-out);
}

.dot:hover { background: rgba(255, 255, 255, 0.5); }

.dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--grad-brand);
    box-shadow: 0 0 12px rgba(247, 37, 133, 0.6);
}

/* Floating accent cards */
.glass-card {
    position: absolute;
    background: rgba(27, 5, 54, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.15);
    z-index: 4;
}

.card-float {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-float strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.1;
}

.card-float span {
    font-size: 11.5px;
    color: var(--muted);
}

.card-ping {
    top: -22px; right: -18px;
    animation: float-small 5s ease-in-out infinite;
}

.card-fiber {
    top: -22px; left: -22px;
    animation: float-small 5s ease-in-out infinite -2.5s;
}

.ping-icon {
    width: 38px; height: 38px;
    background: rgba(247, 37, 133, 0.2);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--pink-400);
}

.fiber-spark {
    width: 38px; height: 38px;
    background: var(--grad-brand);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 6px 18px rgba(247, 37, 133, 0.4);
}

.fiber-spark::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 4px;
    background: radial-gradient(circle, rgba(255,255,255,0.9), transparent 70%);
    animation: spark 2s ease-in-out infinite;
}

@keyframes spark {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes float-small {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeUp 1s var(--ease-out) 0.8s both;
}

.mouse {
    width: 22px; height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: grid;
    place-items: center;
    padding-top: 6px;
}

.mouse span {
    width: 3px; height: 6px;
    background: var(--pink-400);
    border-radius: 2px;
    animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ============================================
   SECTION HEAD
   ============================================ */
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-head-left {
    text-align: left;
    margin-left: 0;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink-400);
    padding: 6px 14px;
    background: rgba(247, 37, 133, 0.12);
    border: 1px solid rgba(247, 37, 133, 0.25);
    border-radius: 999px;
    margin-bottom: 20px;
}

.eyebrow.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-head p {
    font-size: 1.05rem;
    color: var(--light);
    max-width: 520px;
    margin: 0 auto;
}

.section-head-left p { margin: 0; }

/* ============================================
   PLANS
   ============================================ */
.plans {
    padding: 120px 0;
    position: relative;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 40px;
}

.plan-card {
    position: relative;
    padding: 36px 32px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.plan-shine {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
    pointer-events: none;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247, 37, 133, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-lg);
}

.plan-card:hover .plan-shine { opacity: 1; }

.plan-card.featured {
    background: linear-gradient(160deg, rgba(247, 37, 133, 0.12), rgba(123, 44, 191, 0.12));
    border-color: rgba(247, 37, 133, 0.35);
    box-shadow: 0 20px 60px rgba(247, 37, 133, 0.2);
    transform: scale(1.03);
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 30px 80px rgba(247, 37, 133, 0.35);
}

.badge-top {
    position: absolute;
    top: 20px; right: 20px;
    padding: 6px 14px;
    background: var(--grad-brand);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(247, 37, 133, 0.4);
}

.plan-head {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FFB4D8;
    padding: 5px 12px;
    background: rgba(247, 37, 133, 0.15);
    border: 1px solid rgba(247, 37, 133, 0.3);
    border-radius: 999px;
    margin-bottom: 14px;
}

.plan-speed {
    font-family: var(--font-display);
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.plan-speed .big {
    font-size: 3.8rem;
    font-weight: 700;
    background: var(--grad-numbers);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(255, 159, 203, 0.35));
}

.plan-speed .u {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    color: var(--white);
}

.plan-price .currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
}

.plan-price .value {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
    color: var(--white);
}

.plan-price .cents {
    font-size: 1.3rem;
    font-weight: 600;
    margin-left: 2px;
}

.plan-price .per {
    font-size: 0.9rem;
    color: var(--muted);
    margin-left: 4px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: var(--light);
}

.chk {
    width: 22px; height: 22px;
    background: rgba(247, 37, 133, 0.15);
    color: var(--pink-400);
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
}

.plan-card.featured .chk {
    background: var(--grad-brand);
    color: var(--white);
}

.btn-plan {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 24px;
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-plan-featured {
    background: var(--grad-brand);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(247, 37, 133, 0.4);
}

.btn-plan-featured:hover {
    background: var(--grad-brand);
    box-shadow: 0 16px 40px rgba(247, 37, 133, 0.55);
}

.plans-note {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.benefit-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(247, 37, 133, 0.2);
}

.benefit-card:hover::before { transform: scaleX(1); }

.b-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: rgba(247, 37, 133, 0.15);
    color: var(--pink-400);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    transition: all 0.4s var(--ease-out);
}

.benefit-card:hover .b-icon {
    background: var(--grad-brand);
    color: var(--white);
    transform: scale(1.08) rotate(-5deg);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.benefit-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

/* ============================================
   SUPORTE HUMANIZADO
   ============================================ */
.support {
    padding: 80px 0 60px;
}

.support-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(247, 37, 133, 0.07) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.support-card::before {
    content: '';
    position: absolute;
    top: -40%; left: -10%;
    width: 400px; height: 400px;
    background: var(--grad-glow);
    opacity: 0.5;
    pointer-events: none;
}

.support-content { position: relative; z-index: 2; }

.support-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 14px 0 18px;
}

.support-lead {
    color: var(--light);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 540px;
}

.support-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.support-points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.sp-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--grad-brand);
    color: var(--white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(247, 37, 133, 0.35);
    margin-top: 1px;
}

.support-quote {
    position: relative;
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    z-index: 2;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.6;
    color: var(--pink-400);
    margin-bottom: 10px;
    opacity: 0.7;
}

.support-quote p {
    color: var(--white);
    font-size: 1.02rem;
    line-height: 1.55;
    margin-bottom: 22px;
    font-style: italic;
}

.support-quote footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--grad-brand);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    flex-shrink: 0;
}

.support-quote footer strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
}

.support-quote footer span {
    font-size: 12px;
    color: var(--muted);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 80px 0 120px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.15), rgba(123, 44, 191, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 60px;
    backdrop-filter: blur(20px);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: var(--grad-glow);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 2; }

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 16px 0 14px;
}

.cta-content p {
    color: var(--light);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.cta-hint {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-hint::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 0;
    background: rgba(27, 5, 54, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--muted);
    max-width: 320px;
    font-size: 14px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s var(--ease-out);
}

.footer-col a:hover { color: var(--pink-400); }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: var(--muted);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px 10px 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    box-shadow: 0 14px 40px rgba(18, 140, 126, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.wa-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    z-index: -1;
    opacity: 0;
    filter: blur(16px);
    transition: opacity 0.4s var(--ease-out);
}

.wa-float .wa-icon {
    width: 46px; height: 46px;
    background: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.wa-float .wa-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.wa-float .wa-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    animation: wa-ring 2.2s ease-out infinite;
}

.wa-float .wa-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    padding-right: 4px;
}

.wa-float .wa-text small {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.03em;
}

.wa-float .wa-text strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.wa-float:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 22px 50px rgba(18, 140, 126, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.wa-float:hover::before { opacity: 0.65; }

@keyframes wa-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        max-width: 720px;
        margin: 0 auto;
    }

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

    .plan-card.featured {
        transform: scale(1);
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .plan-card.featured:hover {
        transform: translateY(-8px);
    }

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

    .cta-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .support-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 36px;
    }

    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        right: 24px;
        flex-direction: column;
        background: rgba(27, 5, 54, 0.95);
        backdrop-filter: blur(20px);
        padding: 14px;
        border-radius: 20px;
        gap: 4px;
        min-width: 200px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title { font-size: 3rem; }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px 20px;
    }

    .stat-sep { display: none; }

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

    .plan-card.featured { max-width: 100%; }

    .cta-card {
        padding: 32px 24px;
    }

    .support-card {
        padding: 28px 22px;
    }

    .support-quote { padding: 26px 22px; }

    .quote-mark { font-size: 3.6rem; }

    .cta-content h2 { font-size: 1.6rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .footer-bottom .container { flex-direction: column; text-align: center; }

    .scroll-hint { display: none; }

    .card-ping { right: 0; top: -14px; }
    .card-fiber { left: 0; top: -14px; }

    .card-float { padding: 10px 14px; gap: 10px; }
    .card-float strong { font-size: 0.95rem; }
    .card-float span { font-size: 11px; }

    .ping-icon, .fiber-spark { width: 34px; height: 34px; }

    .slider-arrow { display: none; }

    .wa-float {
        padding: 6px;
        bottom: 20px; right: 20px;
    }

    .wa-float .wa-text { display: none; }

    .wa-float .wa-icon { width: 48px; height: 48px; }

    .btn { padding: 13px 22px; font-size: 14px; }

    .nav-container > .btn-ghost { display: none; }

    .logo-badge img { height: 48px; }
    .navbar.scrolled .logo-badge img { height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/*
  Projeto por João Alberto Oliveira
  © Direitos intelectuais reservados a João Alberto e Conectfy.
  É proibida a redistribuição, cópia ou reuso sem autorização prévia.
  Precisa de ajuda? WhatsApp (11) 91700-1991
*/
