/* CSS Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --background: #000000;
    --surface: #111111;
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-radius: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
}

/* Performance Optimizations */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #000;
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading support */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Critical resource hints */
.preload-hint {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus management */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #0080ff;
        --text: #ffffff;
        --background: #000000;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #000000;
        --surface: #111111;
        --text: #ffffff;
    }
}

main {
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background-color: #000;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.features {
    position: relative;
    width: 100%;
    background-color: #fff;
    color: #333;
    padding: 4rem 0;
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-desc {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.features-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.features p {
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 3rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #0066FF;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid .feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 200px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.feature-card i {
    font-size: 2.5rem;
    color: #0066FF;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

header {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo img {
    display: block;
    width: 180px;
    height: auto;
    max-height: 60px;
}

@media (min-width: 768px) {
    .logo img {
        width: 180px;
        height: auto;
        max-height: 60px;
    }
}

@media (min-width: 1024px) {
    .logo img {
        width: 180px;
        height: auto;
        max-height: 60px;
    }
}

/* Compactar altura do header para equilibrar a logo */
.lp-header {
  padding: 8px var(--spacing-md);
  min-height: 56px;
}

@media (min-width: 768px) {
  .lp-header {
    padding: 10px 5vw;
    min-height: 60px;
  }
}

@media (min-width: 1024px) {
  .lp-header {
    padding: 10px 3vw;
    min-height: 60px;
  }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav a:hover,
nav a.active {
    color: var(--text);
    background: rgba(138, 43, 226, 0.1);
}

nav ul li a.signup-link {
    color: inherit;
    font-weight: normal;
}

nav ul li a.signup-link:hover {
    color: var(--primary);
}

nav ul li a.login-nav-link {
    background-color: var(--primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

nav ul li a.login-nav-link:hover {
    background-color: #0077cc;
}

nav ul li a.active {
    background: none;
}

nav a.active {
    color: var(--primary);
    font-weight: 600;
}

.signup-link {
    color: inherit;
    padding: 0.5rem 1.5rem !important;
    transition: all 0.3s ease;
}

.signup-link:hover {
    color: var(--primary) !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text);
    overflow: hidden;
    padding: 0 2rem;
    text-align: center;
    background-color: #000;
}

.hero #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    background: #0066FF;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary {
    border: 1px solid #0066FF;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.1);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    background: #0066FF;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary {
    border: 1px solid #0066FF;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.1);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    text-align: center;
    z-index: 100;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    display: inline-block;
    opacity: 0.9;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer a {
    color: #4169E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #1E90FF;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.8rem;
    }
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

#hero {
    background: var(--background);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

#hero {
    background: var(--background);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: var(--text);
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    opacity: 0.7;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.8rem;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--background);
}

main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

header {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text);
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-calen {
    color: var(--text);
}

.logo-pro {
    color: var(--primary);
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--text);
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav a:hover {
    color: var(--primary);
    background: rgba(138, 43, 226, 0.1);
}

nav ul li a.active {
    background: none;
}

nav a.active {
    color: var(--primary);
    font-weight: 600;
}

* {
    scroll-behavior: smooth;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero {
    min-height: 100vh;
    background: transparent;
}

#features {
    background: #ffffff;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: -2px;
}

.hero {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

section {
    max-width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0061f2;
}

#home {
    text-align: center;
    background: var(--surface);
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

#features {
    padding: 6rem 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
}

#pricing {
    text-align: center;
    background: #000000;
    padding: 6rem 0;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* Added z-index to ensure visibility */
    position: relative; /* Added position to ensure z-index works */
    overflow: hidden;
}

#pricing-particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.8;
}

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

.pricing-card {
    background: rgb(2, 6, 23);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 450px;
    margin: 2rem auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent,
        transparent,
        transparent,
        rgba(0, 102, 255, 0.1),
        rgba(0, 102, 255, 0.3)
    );
    transform: rotate(30deg);
    z-index: -1;
    animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
    0% {
        transform: translateY(0) rotate(30deg);
    }
    50% {
        transform: translateY(-15%) rotate(30deg);
    }
    100% {
        transform: translateY(0) rotate(30deg);
    }
}

.pricing-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.price-tag {
    background: linear-gradient(135deg, #0066FF, #00CCFF);
    color: white;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    transform: rotate(-2deg);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.price-tag::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0)
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.additional-info {
    margin: 2rem 0;
    padding: 1.2rem 5rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    border: 1px dashed rgba(0, 102, 255, 0.4);
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    justify-content: flex-start;
}

.additional-info i {
    color: #00CCFF;
    margin-right: 0.7rem;
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.additional-info .highlight {
    color: #00d4ff;
    font-weight: 700;
    font-size: 1.15rem;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
    display: block;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .additional-info {
        padding: 1.2rem 1.2rem;
    }
}

@media (max-width: 700px) {
    .additional-info {
        padding: 1rem 0.7rem;
        font-size: 1rem;
    }
    .additional-info .highlight {
        font-size: 1rem;
    }
}

.highlight {
    color: #00CCFF;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    position: relative;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--text);
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.features-list li:hover {
    transform: translateX(5px);
    color: #FFFFFF;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: #00CCFF;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0066FF, #00CCFF);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00CCFF, #0066FF);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 0;
    line-height: 0.8;
    font-size: 50rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00CCFF;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
    line-height: 0.8;
}

.currency {
    font-size: 1.5rem;
    color: #00CCFF;
    margin-right: 0.2rem;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
    line-height: 0.8;
}

.period {
    font-size: 1.5rem;
    color: #00CCFF;
    margin-left: 0.2rem;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
    line-height: 0.8;
}

.tech-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-corner::before,
.tech-corner::after {
    content: '';
    position: absolute;
    background-color: #00CCFF;
}

.tech-corner::before {
    width: 100%;
    height: 2px;
}

.tech-corner::after {
    width: 2px;
    height: 100%;
}

.top-left {
    top: 10px;
    left: 10px;
}

.top-left::before {
    top: 0;
    left: 0;
}

.top-left::after {
    top: 0;
    left: 0;
}

.top-right {
    top: 10px;
    right: 10px;
}

.top-right::before {
    top: 0;
    right: 0;
}

.top-right::after {
    top: 0;
    right: 0;
}

.bottom-left {
    bottom: 10px;
    left: 10px;
}

.bottom-left::before {
    bottom: 0;
    left: 0;
}

.bottom-left::after {
    bottom: 0;
    left: 0;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
}

.bottom-right::before {
    bottom: 0;
    right: 0;
}

.bottom-right::after {
    bottom: 0;
    right: 0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.4);
    border-color: rgba(0, 102, 255, 0.6);
}

.price {
    animation: none;
}

.price-tag {
    animation: none;
}

.bounce-animation {
    animation: bounce 2s ease-in-out 1;
}

@media (max-width: 1200px) {
    .pricing-content {
        max-width: 98vw;
        padding: 0 1rem;
    }
}

@media (max-width: 900px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .price-card {
        max-width: 95vw;
        margin: 0 auto 2rem auto;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 700px) {
    .hero-content {
        padding: 0 1rem;
    }
    .hero h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }
    .hero p {
        font-size: 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .price-card {
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    }
    .pricing-content {
        padding: 0 0.5rem;
    }
    .btn-primary, .price-card .btn-primary {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .hero-content {
        padding: 0 0.3rem;
    }
    .features-content, .pricing-content {
        padding: 0 0.2rem;
    }
    .price-card {
        padding: 1rem 0.2rem 1rem 0.2rem;
        border-radius: 12px;
    }
    .pricing-cards {
        gap: 1rem;
    }
    .btn-primary, .price-card .btn-primary {
        font-size: 0.95rem;
        padding: 0.7rem 0.7rem;
    }
    .best-seller-badge {
        font-size: 0.8rem;
        padding: 4px 10px;
        top: -12px;
    }
    .features-grid {
        gap: 0.7rem;
    }
}

#contact {
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Restored Features Section Styling */
#contact {
    background: #ffffff;
    color: #000000;
    min-height: 100vh;
    padding: 6rem 0;
}

.features-grid {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

#features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.feature-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

.feature-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    #features {
        padding: 4rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

#features li {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

#features li:hover {
    transform: translateY(-5px);
}

#system-image {
    padding: 2rem;
    text-align: center;
}

#system-image img {
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

#system-image img:hover {
    transform: scale(1.02);
}

.signup {
    padding: 6rem 0;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    text-align: center;
}

.signup-content h2 {
    margin-bottom: 0.5rem;
}

.section-desc {
    margin-bottom: 0.5rem;
}

.signup-form {
    margin-top: 1rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    text-align: center;
    background-color: #f9f9f9;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
}

.signup-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    background-color: #0099ff;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-form .btn-primary:hover {
    background-color: #0077cc;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(0, 200, 83, 0.1);
    color: #00c853;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.form-message.error {
    display: block;
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.honeypot-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.login-section {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    padding: 0.5rem;
}

.login-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #0077cc;
    text-decoration: underline;
}

#cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0061f2 0%, #00a3ff 100%);
    color: white;
    border-radius: 10px;
    margin: 2rem auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    border: none;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

footer {
    background: var(--surface);
    color: var(--text);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

/* Cards de recursos */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #0061f2;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

/* Cards de preços */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2.5rem 0;
    justify-items: center;
}

.price-card {
    position: relative;
    background: rgba(20, 20, 30, 0.95);
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25), 0 1.5px 8px 0 #0066ff33;
    text-align: center;
    border: 2px solid rgba(0,102,255,0.08);
    transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
    overflow: visible;
}

.price-card.featured {
    border: 3px solid #0066ff;
    box-shadow: 0 0 32px 0 #0066ff55, 0 8px 32px 0 rgba(0,0,0,0.25);
    background: linear-gradient(120deg, #0a1a2f 80%, #0066ff22 100%);
    transform: scale(1.04);
    z-index: 1;
}

.price-card:hover {
    box-shadow: 0 0 40px 0 #0066ff99, 0 8px 32px 0 rgba(0,0,0,0.25);
    border: 2.5px solid #3388ff;
    transform: translateY(-8px) scale(1.03);
}

.price-card h3 {
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.price {
    font-size: 2.3rem;
    color: #00d4ff;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 0 2px 12px #00d4ff44;
    background: linear-gradient(90deg, #00d4ff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price span {
    font-size: 1.1rem;
    color: #b3e0ff;
    font-weight: 500;
    text-shadow: none;
    -webkit-text-fill-color: initial;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.price-card li {
    margin-bottom: 1.1rem;
    color: #e6f7ff;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
}

.price-card i {
    color: #00d4ff;
    font-size: 1.1rem;
}

.price-card .btn-primary {
    background: linear-gradient(90deg, #0066ff 0%, #00d4ff 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    padding: 0.9rem 2.2rem;
    box-shadow: 0 2px 12px #0066ff55;
    border: none;
    transition: background 0.3s, transform 0.2s;
}

.price-card .btn-primary:hover {
    background: linear-gradient(90deg, #00d4ff 0%, #0066ff 100%);
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 4px 24px #00d4ff55;
}

@media (max-width: 900px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contato */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #0061f2;
}

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.secondary-button:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-2px);
}

.secondary-button:hover {
    background: #0061f2;
    color: white;
    transform: translateY(-2px);
}

/* Estilos para animações */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

#scheduling-features {
    padding: 20px;
    margin-top: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

#scheduling-features h2 {
    color: #333;
    margin-bottom: 15px;
}

#scheduling-features p {
    line-height: 1.6;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.price {
    animation: none;
}

.price-tag {
    animation: none;
}

.bounce-animation {
    animation: bounce 2s ease-in-out 1;
}

/* Tech corners for futuristic look */
.tech-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-corner::before,
.tech-corner::after {
    content: '';
    position: absolute;
    background-color: #00CCFF;
}

.tech-corner::before {
    width: 100%;
    height: 2px;
}

.tech-corner::after {
    width: 2px;
    height: 100%;
}

.top-left {
    top: 10px;
    left: 10px;
}

.top-left::before {
    top: 0;
    left: 0;
}

.top-left::after {
    top: 0;
    left: 0;
}

.top-right {
    top: 10px;
    right: 10px;
}

.top-right::before {
    top: 0;
    right: 0;
}

.top-right::after {
    top: 0;
    right: 0;
}

.bottom-left {
    bottom: 10px;
    left: 10px;
}

.bottom-left::before {
    bottom: 0;
    left: 0;
}

.bottom-left::after {
    bottom: 0;
    left: 0;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
}

.bottom-right::before {
    bottom: 0;
    right: 0;
}

.bottom-right::after {
    bottom: 0;
    right: 0;
}

/* Animated tech lines */
.pricing-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 204, 255, 0.5), transparent);
    opacity: 0.3;
}

.signup-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* API Section Styling */
.api-section {
    margin-top: 3rem;
    text-align: center;
}

.api-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.api-section p {
    margin-bottom: 1.5rem;
    color: #666;
}

.btn-api {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #0066FF, #00CCFF);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-api:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-api i {
    margin-right: 0.5rem;
}

#cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0061f2 0%, #00a3ff 100%);
    color: white;
    border-radius: 10px;
    margin: 2rem auto;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.8rem;
    }
}

nav ul li a.signup-link {
    color: inherit;
    font-weight: normal;
}

nav ul li a.signup-link:hover {
    color: var(--primary);
}

nav ul li a.login-nav-link {
    background-color: var(--primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

nav ul li a.login-nav-link:hover {
    background-color: #0077cc;
}

.trial-info {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0.4rem 0.8rem;
    background-color: rgba(0, 119, 255, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.trial-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Slideshow Banner Styles */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: 0 auto 3rem;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.slides {
    display: block;
    position: relative;
    height: 650px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.slide {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 90%;
    object-fit: contain;
    border-radius: 12px;
    background-color: #f5f5f5;
    max-height: 90%;
    max-width: 100%;
}

.slide-caption {
    position: absolute;
    bottom: 40px;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 5;
}

/* Botões de navegação */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 102, 255, 0.8);
}

/* Indicadores de slide (dots) */
.dots-container {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active-dot, .dot:hover {
    background-color: var(--primary);
}

/* Animação de fade */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Responsividade do slideshow */
@media (max-width: 768px) {
    .slides {
        height: 550px;
    }
    
    .slide img {
        height: 85%;
        max-height: 85%;
    }
    
    .slide-caption {
        padding: 15px;
        font-size: 1rem;
        bottom: 35px;
    }
    
    .prev, .next {
        padding: 10px;
    }
    
    .dot {
        height: 8px;
        width: 8px;
        margin: 0 3px;
    }
}

@media (max-width: 480px) {
    .slides {
        height: 450px;
    }
    
    .slide img {
        height: 80%;
        max-height: 80%;
    }
    
    .slide-caption {
        padding: 12px;
        font-size: 0.9rem;
        bottom: 30px;
    }
    
    .dot {
        height: 6px;
        width: 6px;
        margin: 0 2px;
    }
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Botão do WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    animation: none;
}

.whatsapp-button i {
    margin-top: 2px;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Web Chat Widget */
.webchat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    font-size: 32px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.webchat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.webchat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.webchat-container.active {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

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

.webchat-header {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.webchat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.webchat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.webchat-title h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.webchat-status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.webchat-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
}

.webchat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.webchat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.webchat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.webchat-message {
    display: flex;
    gap: 8px;
    max-width: 85%;
}

.webchat-message-bot {
    align-self: flex-start;
}

.webchat-message-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.webchat-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.webchat-message-bot .webchat-message-avatar {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    color: white;
}

.webchat-message-user .webchat-message-avatar {
    background: #e5e7eb;
    color: #333;
}

.webchat-message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    color: #333;
}

.webchat-message-user .webchat-message-content {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    color: white;
}

.webchat-message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: inherit;
}

.webchat-message-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 4px;
    display: block;
    color: inherit;
}

.webchat-input-container {
    padding: 16px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.webchat-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.webchat-input-wrapper input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s;
}

.webchat-input-wrapper input:focus {
    border-color: #0066ff;
}

.webchat-send-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.webchat-send-btn:hover {
    transform: scale(1.1);
}

.webchat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.webchat-typing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.webchat-typing-dots {
    display: flex;
    gap: 2px;
}

.webchat-typing-dots span {
    width: 4px;
    height: 4px;
    background: #6b7280;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.webchat-typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.webchat-typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .webchat-container {
        width: calc(100vw - 40px);
        height: 70vh;
        max-height: 500px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .webchat-container {
        width: calc(100vw - 20px);
        height: 80vh;
        bottom: 70px;
        right: 10px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

/* Selo de mais vendido */
.best-seller-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
    color: #222;
    font-weight: bold;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(255, 204, 51, 0.3);
    letter-spacing: 1px;
    z-index: 2;
    border: 2px solid #fffbe6;
}

/* ===== NOVO CSS LANDING PAGE MODERNA ===== */
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #0a0a12;
  color: #fff;
  margin: 0;
  padding: 0;
}
/* Header - Mobile First Approach */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.lp-header .logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  z-index: 1001;
}

.lp-header .logo-calen { 
  color: #fff; 
}

.lp-header .logo-pro { 
  color: #00d4ff; 
}

/* Desktop Navigation - Hidden on Mobile */
.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.desktop-nav a.active, 
.desktop-nav a:hover {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
}

.desktop-nav .btn-nav {
  background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  color: #fff !important;
  font-weight: 700;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  margin-left: var(--spacing-sm);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  border: none;
  transition: var(--transition);
}

.desktop-nav .btn-nav:hover {
  background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--spacing-xs);
  border-radius: 8px;
  transition: var(--transition);
  z-index: 1001;
  width: 44px;
  height: 44px;
}

.mobile-menu-button:hover {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
}

.mobile-menu-button.active i {
  transform: rotate(90deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--spacing-lg);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  margin: 0;
  padding: 0;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: var(--spacing-md);
  border-radius: 12px;
  transition: var(--transition);
  text-align: center;
  width: 100%;
  max-width: 280px;
  display: block;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.mobile-menu .btn-nav {
  background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%) !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  margin-top: var(--spacing-sm);
}

.mobile-menu .btn-nav:hover {
  background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%) !important;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Tablet and Desktop */
@media (min-width: 768px) {
  .lp-header {
    padding: var(--spacing-md) 5vw;
    min-height: 70px;
  }
  
  .lp-header .logo {
    font-size: 1.8rem;
  }
  
  .desktop-nav {
    display: block;
  }
  
  .mobile-menu-button {
    display: none;
  }
  
  .mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lp-header {
    padding: var(--spacing-md) 3vw;
  }
  
  .lp-header .logo {
    font-size: 2rem;
  }
  
  .desktop-nav ul {
    gap: 2rem;
  }
}
/* Main Content - Mobile First */
main {
  padding-top: 60px; /* Mobile header height */
}

@media (min-width: 768px) {
  main {
    padding-top: 70px; /* Tablet header height */
  }
}

@media (min-width: 1024px) {
  main {
    padding-top: 90px; /* Desktop header height */
  }
}
/* Hero Section - Mobile First */
.lp-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, #0a0a12 0%, #0066ff11 100%);
  gap: var(--spacing-xl);
  text-align: center;
}

.lp-hero-content {
  width: 100%;
  max-width: 600px;
  z-index: 2;
}

.lp-hero-content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.lp-hero-content p {
  font-size: 1.1rem;
  color: #b3e0ff;
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.lp-btn-main {
  display: inline-block;
  background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 25px;
  padding: var(--spacing-md) var(--spacing-xl);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
  border: none;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.lp-btn-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

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

.lp-btn-main:hover {
  background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
}

.lp-hero-img {
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2), 0 2px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.lp-hero-img img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3), 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Tablet */
@media (min-width: 768px) {
  .lp-hero {
    flex-direction: row;
    min-height: 80vh;
    padding: var(--spacing-xxl) 5vw var(--spacing-xl);
    text-align: left;
    gap: var(--spacing-xxl);
  }
  
  .lp-hero-content {
    flex: 1 1 400px;
    max-width: 500px;
  }
  
  .lp-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .lp-hero-content p {
    font-size: 1.2rem;
    margin-left: 0;
    margin-right: 0;
  }
  
  .lp-btn-main {
    font-size: 1.2rem;
    padding: var(--spacing-md) 2.5rem;
  }
  
  .lp-hero-img {
    flex: 1 1 400px;
    max-width: 480px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .lp-hero {
    padding: var(--spacing-xxl) 3vw;
  }
  
  .lp-hero-content h1 {
    font-size: 2.7rem;
  }
  
  .lp-hero-content p {
    font-size: 1.25rem;
  }
}
.lp-benefits {
  padding: 4rem 2vw 2rem 2vw;
  background: #0a0a12;
  text-align: center;
}
.lp-benefits h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #00d4ff;
}
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-benefit-card {
  background: #10101a;
  border-radius: 14px;
  padding: 2.2rem 1rem 1.2rem 1rem;
  box-shadow: 0 2px 12px #00d4ff11;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.1rem;
  color: #b3e0ff;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-benefit-card i {
  font-size: 2.2rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}
.lp-benefit-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px #00d4ff33;
  background: #18182a;
}
.lp-plans {
  padding: 4rem 2vw 2rem 2vw;
  background: linear-gradient(120deg, #0a0a12 70%, #0066ff11 100%);
  text-align: center;
}
.lp-plans h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #00d4ff;
}
.lp-plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.lp-plan-card {
  background: #10101a;
  border-radius: 18px;
  box-shadow: 0 2px 12px #00d4ff22;
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 270px;
  max-width: 340px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 2px solid transparent;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}
.lp-plan-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
}
.lp-plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}
.lp-plan-price .currency, .lp-plan-price .period {
  font-size: 1.1rem;
  color: #b3e0ff;
  font-weight: 500;
}
.lp-plan-card ul {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}
.lp-plan-card ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
}
.lp-plan-card ul li:before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #00d4ff;
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1rem;
}
.lp-btn-plan {
  display: inline-block;
  background: linear-gradient(90deg, #0066ff 0%, #00d4ff 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 30px;
  padding: 0.8rem 2.2rem;
  box-shadow: 0 2px 12px #00d4ff44;
  border: none;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}
.lp-btn-plan:hover {
  background: linear-gradient(90deg, #00d4ff 0%, #0066ff 100%);
  color: #fff;
  transform: scale(1.06);
}
.lp-plan-featured {
  border: 2.5px solid #00d4ff;
  box-shadow: 0 8px 32px #00d4ff55;
  background: linear-gradient(120deg, #10101a 80%, #0066ff22 100%);
  transform: scale(1.04);
  z-index: 1;
}
.lp-plan-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
  color: #222;
  font-weight: bold;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(255, 204, 51, 0.3);
  letter-spacing: 1px;
  z-index: 2;
  border: 2px solid #fffbe6;
}
.lp-plan-card:hover {
  box-shadow: 0 0 40px 0 #00d4ff99, 0 8px 32px 0 rgba(0,0,0,0.25);
  border: 2.5px solid #3388ff;
  transform: translateY(-8px) scale(1.03);
}
.lp-cta-final {
  background: #0a0a12;
  text-align: center;
  padding: 3rem 2vw 4rem 2vw;
}
.lp-cta-final h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}
.lp-footer {
  background: #10101a;
  color: #b3e0ff;
  text-align: center;
  padding: 2rem 1vw;
  font-size: 1rem;
}
.lp-footer a {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
}
.lp-footer a:hover {
  color: #fff;
}
/* FAQ */
.lp-faq {
  background: #0a0a12;
  padding: 4rem 2vw 4rem 2vw;
  max-width: 900px;
  margin: 0 auto;
}
.lp-faq-title {
  font-size: 2rem;
  color: #00d4ff;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
}
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lp-faq-item {
  background: #10101a;
  border-radius: 12px;
  box-shadow: 0 2px 12px #00d4ff11;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
  position: relative;
}
.lp-faq-item:hover {
  box-shadow: 0 8px 32px #00d4ff33;
  background: #18182a;
}
.lp-faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #00d4ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-faq-answer {
  font-size: 1.05rem;
  color: #b3e0ff;
  margin-top: 0.7rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  opacity: 0;
}
.lp-faq-item.open .lp-faq-answer {
  max-height: 300px;
  opacity: 1;
}
.lp-faq-question .faq-arrow {
  margin-left: 1rem;
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.lp-faq-item.open .faq-arrow {
  transform: rotate(90deg);
}
/* Responsividade */
@media (max-width: 900px) {
  .lp-hero, .lp-benefits, .lp-plans, .lp-cta-final, .lp-faq {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .lp-plans-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .lp-hero {
    flex-direction: column;
    gap: 2rem;
    padding-top: 5rem;
  }
  .lp-hero-img {
    max-width: 90vw;
  }
}
@media (max-width: 600px) {
  .lp-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2vw;
  }
  .lp-header nav ul {
    gap: 1rem;
  }
  .lp-hero-content h1 {
    font-size: 1.5rem;
  }
  .lp-hero-content p {
    font-size: 1rem;
  }
  .lp-benefits h2, .lp-plans h2, .lp-faq-title, .lp-cta-final h2 {
    font-size: 1.2rem;
  }
  .lp-plan-card {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    min-width: 0;
    max-width: 98vw;
  }
  .lp-plan-badge {
    font-size: 0.8rem;
    padding: 4px 10px;
    top: -12px;
  }
}
/* ===== FIM NOVO CSS LANDING PAGE ===== */

/* ===== VISUAL ULTRA CHAMATIVO E MODERNO ===== */

body {
  background: #0a0a12;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  overflow-x: hidden;
}

/* HERO COM GRADIENTE ANIMADO E SHAPES */
.lp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 6rem 2vw 3rem 2vw;
  background: linear-gradient(120deg, #0a0a12 60%, #0066ff 100%);
  overflow: hidden;
  z-index: 1;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140vw;
  height: 140vw;
  background: radial-gradient(circle at 60% 40%, #00d4ff55 0%, #0a0a12 70%);
  filter: blur(80px);
  opacity: 0.7;
  z-index: 0;
  animation: hero-bg-move 12s linear infinite alternate;
}
@keyframes hero-bg-move {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.1) translateY(40px); }
}
.lp-hero-content {
  flex: 1 1 350px;
  max-width: 540px;
  z-index: 2;
  position: relative;
}
.lp-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #fff 40%, #00d4ff 60%, #00ffea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 18px #00d4ff99, 0 2px 24px #00ffea44;
  animation: neon-glow 2.5s infinite alternate;
}
@keyframes neon-glow {
  0% { text-shadow: 0 0 18px #00d4ff99, 0 2px 24px #00ffea44; }
  100% { text-shadow: 0 0 32px #00ffea, 0 2px 40px #00d4ff; }
}
.lp-hero-content p {
  font-size: 1.3rem;
  color: #b3e0ff;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 12px #00d4ff33;
}
.lp-btn-main {
  display: inline-block;
  background: linear-gradient(90deg, #0066ff 0%, #00d4ff 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 40px;
  padding: 1.2rem 3.5rem;
  box-shadow: 0 0 32px #00d4ff99, 0 2px 12px #00ffea44;
  border: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  position: relative;
  animation: btn-pulse 2.2s infinite alternate;
}
@keyframes btn-pulse {
  0% { box-shadow: 0 0 32px #00d4ff99, 0 2px 12px #00ffea44; }
  100% { box-shadow: 0 0 48px #00ffea, 0 2px 32px #00d4ff; }
}
.lp-btn-main:hover {
  background: linear-gradient(90deg, #00d4ff 0%, #0066ff 100%);
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 0 64px #00ffea, 0 2px 32px #00d4ff;
}
.lp-hero-img {
  flex: 1 1 350px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.lp-hero-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 8px 48px #00d4ff77, 0 2px 24px #0008;
  border: 3px solid #00d4ff44;
  background: #0a0a12;
  transition: transform 0.3s;
}
.lp-hero-img img:hover {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 16px 64px #00ffea99, 0 2px 32px #00d4ff;
}

/* BENEFÍCIOS COLORIDOS E ANIMADOS */
.lp-benefits {
  padding: 4rem 2vw 2rem 2vw;
  background: linear-gradient(120deg, #0a0a12 70%, #003366 100%);
  text-align: center;
  position: relative;
  z-index: 1;
}
.lp-benefits h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #00d4ff;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px #00d4ff33;
}
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-benefit-card {
  background: linear-gradient(135deg, #00d4ff22 0%, #003366 100%);
  border-radius: 18px;
  padding: 2.5rem 1rem 1.5rem 1rem;
  box-shadow: 0 2px 18px #00d4ff22;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.15rem;
  color: #b3e0ff;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  border: 2px solid #00d4ff33;
  position: relative;
  overflow: hidden;
}
.lp-benefit-card i {
  font-size: 2.5rem;
  color: #00ffea;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 8px #00d4ff88);
  transition: color 0.3s;
}
.lp-benefit-card:hover {
  transform: translateY(-10px) scale(1.06) rotate(-1deg);
  box-shadow: 0 8px 32px #00ffea55, 0 2px 24px #00d4ff33;
  background: linear-gradient(135deg, #00ffea33 0%, #0066ff 100%);
  color: #fff;
}
.lp-benefit-card:hover i {
  color: #fff;
}

/* PLANOS COM BORDA ANIMADA E 3D */
.lp-plans {
  padding: 5rem 2vw 3rem 2vw;
  background: linear-gradient(120deg, #0a0a12 70%, #003366 100%);
  text-align: center;
  position: relative;
  z-index: 1;
}
.lp-plans h2 {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #00ffea;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px #00d4ff33;
}
.lp-plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.lp-plan-card {
  background: #10101a;
  border-radius: 24px;
  box-shadow: 0 2px 32px #00d4ff33, 0 8px 32px #00ffea22;
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  min-width: 270px;
  max-width: 340px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 3px solid transparent;
  transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
  overflow: visible;
  z-index: 1;
  background-clip: padding-box;
}
.lp-plan-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #fff;
  letter-spacing: 1px;
}
.lp-plan-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00ffea;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px #00d4ff33;
}
.lp-plan-price .currency, .lp-plan-price .period {
  font-size: 1.2rem;
  color: #b3e0ff;
  font-weight: 600;
}
.lp-plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  color: #b3e0ff;
  text-align: left;
  width: 100%;
}
.lp-plan-card ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.1rem;
}
.lp-plan-card ul li:before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #00ffea;
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px #00d4ff88);
}
.lp-btn-plan {
  display: inline-block;
  background: linear-gradient(90deg, #0066ff 0%, #00d4ff 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 40px;
  padding: 1rem 2.5rem;
  box-shadow: 0 0 32px #00d4ff99, 0 2px 12px #00ffea44;
  border: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  position: relative;
  animation: btn-pulse 2.2s infinite alternate;
}
.lp-btn-plan:hover {
  background: linear-gradient(90deg, #00d4ff 0%, #0066ff 100%);
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 0 64px #00ffea, 0 2px 32px #00d4ff;
}
.lp-plan-featured {
  border: 4px solid #00ffea;
  box-shadow: 0 16px 64px #00ffea99, 0 8px 32px #00d4ff55;
  background: linear-gradient(120deg, #10101a 80%, #00ffea22 100%);
  transform: scale(1.07) rotate(-1deg);
  z-index: 2;
  filter: drop-shadow(0 0 32px #00ffea88);
}
.lp-plan-badge {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
  color: #222;
  font-weight: bold;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 1.1rem;
  box-shadow: 0 2px 18px rgba(255, 204, 51, 0.3);
  letter-spacing: 1px;
  z-index: 3;
  border: 2.5px solid #fffbe6;
  text-shadow: 0 2px 8px #fffbe6cc;
  filter: drop-shadow(0 0 12px #ffcc33cc);
}
.lp-plan-card:hover {
  box-shadow: 0 0 64px 0 #00ffea99, 0 8px 32px 0 #00d4ff55;
  border: 3.5px solid #3388ff;
  transform: translateY(-12px) scale(1.04) rotate(-1deg);
}

/* FAQ VIBRANTE E ANIMADA */
.lp-faq {
  background: linear-gradient(120deg, #0a0a12 70%, #003366 100%);
  padding: 5rem 2vw 5rem 2vw;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 32px;
  box-shadow: 0 8px 32px #00d4ff22;
}
.lp-faq-title {
  font-size: 2.2rem;
  color: #00ffea;
  font-weight: 900;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px #00d4ff33;
}
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.lp-faq-item {
  background: linear-gradient(90deg, #10101a 80%, #00d4ff22 100%);
  border-radius: 18px;
  box-shadow: 0 2px 18px #00d4ff11;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
  position: relative;
  border: 2px solid #00d4ff33;
  overflow: hidden;
}
.lp-faq-item:hover {
  box-shadow: 0 8px 32px #00ffea55, 0 2px 24px #00d4ff33;
  background: linear-gradient(90deg, #00ffea33 0%, #0066ff 100%);
  transform: scale(1.03) translateY(-4px);
}
.lp-faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00d4ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.5px;
}
.lp-faq-answer {
  font-size: 1.1rem;
  color: #b3e0ff;
  margin-top: 0.7rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
  opacity: 0;
  padding-left: 0.5rem;
}
.lp-faq-item.open .lp-faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-top: 1rem;
}
.lp-faq-question .faq-arrow {
  margin-left: 1rem;
  font-size: 1.4rem;
  transition: transform 0.3s;
  color: #00ffea;
}
.lp-faq-item.open .faq-arrow {
  transform: rotate(90deg);
}

/* CTA FINAL ULTRA CHAMATIVO */
.lp-cta-final {
  background: linear-gradient(90deg, #00d4ff 0%, #0066ff 100%);
  text-align: center;
  padding: 4rem 2vw 5rem 2vw;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -8px 32px #00d4ff33;
  margin-top: 4rem;
}
.lp-cta-final h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px #00d4ff33;
}
.lp-cta-final .lp-btn-main {
  font-size: 1.5rem;
  padding: 1.5rem 5rem;
  border-radius: 50px;
  margin-top: 1.5rem;
}

/* SEPARADORES SVG ENTRE SEÇÕES */
.lp-separator {
  width: 100vw;
  height: 80px;
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

/* FOOTER */
.lp-footer {
  background: #10101a;
  color: #b3e0ff;
  text-align: center;
  padding: 2rem 1vw;
  font-size: 1.1rem;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 -2px 12px #00d4ff22;
}
.lp-footer a {
  color: #00ffea;
  text-decoration: none;
  font-weight: 700;
}
.lp-footer a:hover {
  color: #fff;
}

/* RESPONSIVIDADE */
@media (max-width: 1100px) {
  .lp-plans-grid { flex-direction: column; gap: 2rem; }
  .lp-benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .lp-header { flex-direction: column; gap: 1rem; padding: 1rem 2vw; }
  .lp-header nav ul { gap: 1rem; }
  .lp-hero-content h1 { font-size: 2rem; }
  .lp-hero-content p { font-size: 1.1rem; }
  .lp-benefits h2, .lp-plans h2, .lp-faq-title, .lp-cta-final h2 { font-size: 1.3rem; }
  .lp-plan-card { padding: 1.2rem 0.5rem 1.2rem 0.5rem; min-width: 0; max-width: 98vw; }
  .lp-plan-badge { font-size: 0.8rem; padding: 4px 10px; top: -12px; }
  .lp-benefits-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .lp-faq { padding: 2rem 1vw; }
  .lp-cta-final { padding: 2rem 1vw 2.5rem 1vw; }
}

/* Melhorias visuais para a seção de cadastro/teste (signup) */
.signup {
  background: linear-gradient(135deg, #f8fbff 60%, #e6f0fa 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem 3rem 1rem;
}
.signup-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.signup-content h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0066ff;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #0066ff 60%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.signup-content .section-desc {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.signup-content .video-container {
  margin: 2.2rem auto 2.2rem auto;
  box-shadow: 0 8px 32px #0066ff22, 0 2px 12px #00d4ff11;
  border-radius: 18px;
  background: #f8fbff;
  padding: 0.5rem;
  max-width: 1000px;
  width: 100%;
}
.signup-content .video-container iframe {
  border-radius: 14px;
}
.trial-info {
  background: linear-gradient(90deg, #e0f3ff 60%, #c2e9fb 100%);
  color: #0066ff;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px #00d4ff22;
  padding: 1.1rem 1rem;
  margin: 2rem auto 0 auto;
  display: inline-block;
  border: 1.5px solid #b3e0ff;
}
@media (max-width: 1100px) {
  .signup-content, .signup-content .video-container {
    max-width: 98vw;
  }
}
@media (max-width: 700px) {
  .signup-content h2 {
    font-size: 1.3rem;
  }
  .signup-content .video-container {
    margin: 1.2rem auto 1.2rem auto;
    border-radius: 10px;
    padding: 0.2rem;
  }
  .trial-info {
    font-size: 1rem;
    padding: 0.7rem 0.5rem;
    border-radius: 8px;
  }
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xxl) var(--spacing-sm);
    background: var(--background);
    position: relative;
}

.faq-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.faq-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0066FF 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-content .section-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: #0066FF;
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: #0066FF;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: #0066FF;
    text-decoration: none;
    transition: var(--transition);
}

.faq-answer a:hover {
    color: #00d4ff;
}

@media (max-width: 768px) {
    .faq-content h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer.active {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}
