* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scrollbar personalizada roxa */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0C0115;
    border-left: 1px solid rgba(168, 85, 247, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #5D1AA0, #9333EA, #A855F7);
    border-radius: 6px;
    border: 2px solid #0C0115;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #6B2FA3, #A855F7, #B873F8);
}

/* Para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #9333EA #0C0115;
}

/* Minimal animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

:root {
    --primary-color: #0C0115;
    --secondary-color: #0C0115;
    --accent-color: #863AC6;
    --highlight-color: #863AC6;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-dark: #2d2d2d;
    --bg-light: #f5f5f5;
    --bg-dark: #0C0115;
    --border-color: rgba(134, 58, 198, 0.3);
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --gradient-primary: linear-gradient(135deg, #863AC6 0%, #6b2fa3 100%);
    --gradient-dark: linear-gradient(135deg, #0C0115 0%, #1a0a2e 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(12, 1, 21, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
    transition: all 0.3s ease;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 1));
    transform: scale(1.1);
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.9));
    }
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(to right, #A855F7, #3B82F6, #A855F7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transition: opacity 0.2s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(134, 58, 198, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(134, 58, 198, 0.2);
    border: 1px solid var(--highlight-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--highlight-color);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-hook {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-style: italic;
    line-height: 1.8;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Problem Section */
.problem {
    background: #0C0115;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .problems-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.problem-item {
    background: rgba(12, 1, 21, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.2s ease;
}

.problem-item:hover {
    border-color: var(--highlight-color);
}

.problem-icon {
    font-size: 1.5rem;
    color: var(--highlight-color);
    font-weight: bold;
    flex-shrink: 0;
}

.problem-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.truth-box {
    background: rgba(134, 58, 198, 0.1);
    border: 2px solid var(--highlight-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.truth-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.truth-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.truth-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Solution Section */
.solution {
    background: var(--gradient-dark);
}

.solution-tagline {
    font-size: 1.5rem;
    text-align: center;
    color: var(--highlight-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.results {
    margin: 4rem 0;
}

.results-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.result-item {
    background: rgba(12, 1, 21, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: border-color 0.2s ease;
}

.result-item:hover {
    border-color: var(--highlight-color);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(12, 1, 21, 0.8);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--highlight-color);
    transition: border-color 0.2s ease;
}

.testimonial:hover {
    border-color: var(--highlight-color);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    color: var(--text-primary);
    font-weight: 600;
}

/* Features Section */
.features {
    background: #0C0115;
}

.feature-block {
    background: rgba(12, 1, 21, 0.8);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: border-color 0.2s ease;
}

.feature-block:hover {
    border-color: var(--highlight-color);
}

.feature-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    line-height: 1.8;
    border-bottom: 1px solid rgba(42, 42, 62, 0.5);
}

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

.feature-list li strong {
    color: var(--text-primary);
}

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

.feature-item {
    background: rgba(12, 1, 21, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease;
}

.feature-item:hover {
    border-color: var(--highlight-color);
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.warning-box {
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid var(--warning-color);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.warning-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

/* Pricing Section */
.pricing {
    background: var(--gradient-dark);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-subtitle {
    font-size: 1.5rem;
    color: var(--highlight-color);
    font-weight: 600;
    margin: 1rem 0;
}

.pricing-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.countdown-box {
    background: rgba(134, 58, 198, 0.1);
    border: 2px solid var(--highlight-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
}

.countdown-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.countdown-box > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--highlight-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: rgba(12, 1, 21, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: border-color 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 650px;
}

.pricing-card .cta-button {
    margin-top: auto;
}

.pricing-card:hover {
    border-color: var(--highlight-color);
}

.pricing-card.featured {
    border-color: var(--highlight-color);
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.pricing-badge.bronze {
    background: #cd7f32;
    color: var(--text-primary);
}

.pricing-badge.silver {
    background: #c0c0c0;
    color: var(--text-dark);
}

.pricing-badge.gold {
    background: #ffd700;
    color: var(--text-dark);
}

.pricing-card-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-old {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-new {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-check {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(42, 42, 62, 0.5);
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

.feature-check:last-child {
    border-bottom: none;
}

.guarantee-box {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid var(--success-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
}

.guarantee-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

.guarantee-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-item {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.urgency-box {
    background: rgba(134, 58, 198, 0.15);
    border: 2px solid var(--highlight-color);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.urgency-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.no-card {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-style: italic;
}

.why-start {
    margin: 4rem 0;
    text-align: center;
}

.why-start h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.why-item {
    background: rgba(12, 1, 21, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.bonus-box {
    background: rgba(134, 58, 198, 0.1);
    border: 2px solid rgba(134, 58, 198, 0.5);
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
}

.bonus-box h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-list {
    margin-bottom: 2rem;
}

.bonus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(42, 42, 62, 0.5);
}

.bonus-item:last-child {
    border-bottom: none;
}

.bonus-item strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.bonus-value {
    color: var(--text-secondary);
}

.bonus-total {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(134, 58, 198, 0.5);
}

.bonus-total p {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.bonus-total-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.bonus-today {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
    margin-top: 1rem;
}

.final-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(12, 1, 21, 0.8);
    border-radius: 12px;
}

.final-cta p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.final-cta p strong {
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: #0C0115;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .nav {
        gap: 1rem;
    }

    .nav-link {
        display: none;
    }


    .countdown {
        gap: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

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

    .guarantee-items {
        flex-direction: column;
        gap: 1rem;
    }

    .logo img {
        height: 32px;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}

/* ============================================
   NOVOS ESTILOS DO HEAVEN BUSINESS
   ============================================ */

/* Banner de Urgência */
.urgency-banner {
    width: 100vw;
    background: #dc2626;
    padding: 0.7rem 0;
    z-index: 99999;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 44px;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
}

.urgency-content {
    display: flex;
    animation: scroll-urgency 20s linear infinite;
    gap: 2rem;
}

.urgency-text {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

@keyframes scroll-urgency {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hero Section Moderna */
.min-h-screen {
    min-height: 100vh;
}

.bg-black {
    background: #000;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    overflow: hidden;
    margin-top: 44px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(93, 26, 160, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    animation: gradient-shift 10s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Partículas */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(168, 85, 247, 0.6);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.particle[data-index="0"] { top: 10%; left: 20%; animation-delay: 0s; }
.particle[data-index="1"] { top: 20%; left: 80%; animation-delay: 1s; }
.particle[data-index="2"] { top: 30%; left: 50%; animation-delay: 2s; }
.particle[data-index="3"] { top: 50%; left: 10%; animation-delay: 0.5s; }
.particle[data-index="4"] { top: 60%; left: 70%; animation-delay: 1.5s; }
.particle[data-index="5"] { top: 70%; left: 40%; animation-delay: 2.5s; }
.particle[data-index="6"] { top: 80%; left: 90%; animation-delay: 0.8s; }
.particle[data-index="7"] { top: 15%; left: 60%; animation-delay: 1.2s; }
.particle[data-index="8"] { top: 40%; left: 30%; animation-delay: 2.2s; }
.particle[data-index="9"] { top: 55%; left: 85%; animation-delay: 0.3s; }
.particle[data-index="10"] { top: 25%; left: 15%; animation-delay: 1.8s; }
.particle[data-index="11"] { top: 65%; left: 55%; animation-delay: 0.6s; }
.particle[data-index="12"] { top: 35%; left: 75%; animation-delay: 2.8s; }
.particle[data-index="13"] { top: 75%; left: 25%; animation-delay: 1.4s; }
.particle[data-index="14"] { top: 45%; left: 95%; animation-delay: 0.9s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
}

/* Elementos Flutuantes */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    color: rgba(168, 85, 247, 0.4);
    animation: float-element 6s ease-in-out infinite;
}

.floating-element[data-x="10"][data-y="20"] { top: 10%; left: 20%; animation-delay: 0s; }
.floating-element[data-x="80"][data-y="30"] { top: 30%; left: 80%; animation-delay: 1s; }
.floating-element[data-x="20"][data-y="70"] { top: 70%; left: 20%; animation-delay: 2s; }
.floating-element[data-x="70"][data-y="60"] { top: 60%; left: 70%; animation-delay: 1.5s; }
.floating-element[data-x="40"][data-y="40"] { top: 40%; left: 40%; animation-delay: 0.5s; }

@keyframes float-element {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.connection-line {
    stroke: rgba(168, 85, 247, 0.3);
    stroke-width: 1;
    animation: pulse-line 3s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

/* Layout Hero Principal */
.hero-main-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-main-col {
    position: relative;
}

.hero-main-content {
    text-align: left;
}

.hero-main-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-headline {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #5D1AA0, #A855F7, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-image-coruja {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.5));
}

/* CTA Button Moderno */
.cta-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #5D1AA0, #9333EA);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.cta-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .cta-overlay {
    left: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.title-decoration {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #5D1AA0, #A855F7, #3B82F6);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #D1D5DB;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Backgrounds com Efeitos */
.features-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(93, 26, 160, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.blur-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.blur-left {
    left: -200px;
    top: 20%;
    background: rgba(93, 26, 160, 0.5);
}

.blur-right {
    right: -200px;
    bottom: 20%;
    background: rgba(59, 130, 246, 0.5);
}

/* Feature Cards */
.feature-card {
    background: rgba(12, 1, 21, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: rgba(168, 85, 247, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5D1AA0, #9333EA);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Seções com Background */
.problem-section,
.solution-section,
.features-section,
.pricing-section {
    position: relative;
    padding: 100px 0;
}

.problem-section .container,
.solution-section .container,
.features-section .container,
.pricing-section .container {
    position: relative;
    z-index: 10;
}

/* Proof Cards */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 1200px) {
    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.proof-card {
    background: rgba(12, 1, 21, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.proof-card:hover {
    border-color: rgba(168, 85, 247, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.proof-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #5D1AA0, #A855F7, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.proof-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section Final */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 26, 160, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(168, 85, 247, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #5D1AA0, #A855F7, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: #D1D5DB;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-final-button {
    display: inline-block;
    background: linear-gradient(to right, #5D1AA0, #9333EA);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.cta-final-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
}

/* Estilos para Screenshots e Imagens */
.system-showcase {
    margin: 4rem 0;
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(168, 85, 247, 0.4);
}

.system-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(12, 1, 21, 0.3) 100%);
    pointer-events: none;
}

.feature-screenshot {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.feature-screenshot:hover {
    transform: scale(1.02);
}

.feature-mini-screenshot {
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-mini-screenshot:hover {
    transform: scale(1.05);
}

.problem-image {
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.problem-item:hover .problem-image {
    opacity: 1;
}

.proof-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.proof-card:hover .proof-image {
    transform: scale(1.05);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(168, 85, 247, 0.5);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial:hover .testimonial-avatar {
    border-color: rgba(168, 85, 247, 0.8);
    transform: scale(1.1);
}

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

.gallery-item {
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive para novos estilos */
@media (max-width: 768px) {
    .hero-main-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

    .logo-image-coruja {
        width: 100%;
        max-width: 100%;
    }

    .cta-title {
        font-size: 2rem;
    }

    .urgency-text {
        font-size: 0.75rem;
    }

    .floating-element {
        font-size: 1.5rem;
    }

    .proof-number {
        font-size: 2.5rem;
    }

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

    .feature-screenshot,
    .showcase-image-wrapper {
        margin: 1.5rem 0;
    }
}

/* ============================================
   LIGHTBOX PARA IMAGENS
   ============================================ */

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    cursor: default;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

/* Tornar imagens clicáveis */
.feature-mini-screenshot img,
.system-screenshot,
.feature-screenshot img,
.gallery-item img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.feature-mini-screenshot img:hover,
.system-screenshot:hover,
.feature-screenshot img:hover,
.gallery-item img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .lightbox-image {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-close {
        top: -50px;
        right: 50%;
        transform: translateX(50%);
    }
}

/* ============================================
   MODAL DE FORMULÁRIO DE COMPRA
   ============================================ */

.purchase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.purchase-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    background: rgba(12, 1, 21, 0.98);
    border: 2px solid rgba(168, 85, 247, 0.5);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 2rem auto;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(12, 1, 21, 0.5);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #5D1AA0, #9333EA);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #6B2FA3, #A855F7);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #5D1AA0, #A855F7, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.modal-subtitle {
    font-size: 1rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
    text-align: center;
}

#heaven-form-container {
    margin-top: 2rem;
}

/* Estilização do formulário Heaven */
#heaven-form-container {
    background: transparent !important;
}

#heaven-form-container form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: transparent !important;
}

#heaven-form-container .form-group,
#heaven-form-container .form-field,
#heaven-form-container .field-group,
#heaven-form-container .input-group,
#heaven-form-container > div > div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: transparent !important;
}

/* Remover fundo branco de qualquer elemento do formulário */
#heaven-form-container * {
    background-color: transparent !important;
}

/* Exceção apenas para os inputs */
#heaven-form-container input[type="text"],
#heaven-form-container input[type="email"],
#heaven-form-container input[type="tel"],
#heaven-form-container input[type="number"],
#heaven-form-container textarea,
#heaven-form-container select {
    background: rgba(12, 1, 21, 0.8) !important;
}

#heaven-form-container label {
    color: #D1D5DB;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

#heaven-form-container input[type="text"],
#heaven-form-container input[type="email"],
#heaven-form-container input[type="tel"],
#heaven-form-container input[type="number"],
#heaven-form-container textarea,
#heaven-form-container select {
    background: rgba(12, 1, 21, 0.8);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

#heaven-form-container input[type="text"]:focus,
#heaven-form-container input[type="email"]:focus,
#heaven-form-container input[type="tel"]:focus,
#heaven-form-container input[type="number"]:focus,
#heaven-form-container textarea:focus,
#heaven-form-container select:focus {
    outline: none;
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
    background: rgba(12, 1, 21, 0.95);
}

#heaven-form-container input[type="text"]::placeholder,
#heaven-form-container input[type="email"]::placeholder,
#heaven-form-container input[type="tel"]::placeholder,
#heaven-form-container textarea::placeholder {
    color: rgba(209, 213, 219, 0.5);
}

#heaven-form-container textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Ocultar campos de descrição e valor */
#heaven-form-container label:has-text("descrição"),
#heaven-form-container label:has-text("Descrição"),
#heaven-form-container label:has-text("DESCRIÇÃO"),
#heaven-form-container label:has-text("valor"),
#heaven-form-container label:has-text("Valor"),
#heaven-form-container label:has-text("VALOR") {
    display: none !important;
}

/* Ocultar campos baseado em texto do label ou placeholder */
#heaven-form-container label:contains("descrição"),
#heaven-form-container label:contains("Descrição"),
#heaven-form-container label:contains("DESCRIÇÃO"),
#heaven-form-container label:contains("valor"),
#heaven-form-container label:contains("Valor"),
#heaven-form-container label:contains("VALOR") {
    display: none !important;
}

/* Ocultar campos de descrição e valor por atributos */
#heaven-form-container input[name*="descrição"],
#heaven-form-container input[name*="descricao"],
#heaven-form-container input[name*="description"],
#heaven-form-container input[name*="valor"],
#heaven-form-container input[name*="value"],
#heaven-form-container input[name*="price"],
#heaven-form-container textarea[name*="descrição"],
#heaven-form-container textarea[name*="descricao"],
#heaven-form-container textarea[name*="description"],
#heaven-form-container select[name*="descrição"],
#heaven-form-container select[name*="descricao"],
#heaven-form-container select[name*="description"],
#heaven-form-container select[name*="valor"],
#heaven-form-container select[name*="value"],
#heaven-form-container select[name*="price"] {
    display: none !important;
}

/* Ocultar grupos de formulário que contenham campos de descrição ou valor */
#heaven-form-container .form-group:has(label:contains("descrição")),
#heaven-form-container .form-group:has(label:contains("Descrição")),
#heaven-form-container .form-group:has(label:contains("DESCRIÇÃO")),
#heaven-form-container .form-group:has(label:contains("valor")),
#heaven-form-container .form-group:has(label:contains("Valor")),
#heaven-form-container .form-group:has(label:contains("VALOR")),
#heaven-form-container .form-field:has(label:contains("descrição")),
#heaven-form-container .form-field:has(label:contains("Descrição")),
#heaven-form-container .form-field:has(label:contains("DESCRIÇÃO")),
#heaven-form-container .form-field:has(label:contains("valor")),
#heaven-form-container .form-field:has(label:contains("Valor")),
#heaven-form-container .form-field:has(label:contains("VALOR")),
#heaven-form-container .field-group:has(label:contains("descrição")),
#heaven-form-container .field-group:has(label:contains("Descrição")),
#heaven-form-container .field-group:has(label:contains("DESCRIÇÃO")),
#heaven-form-container .field-group:has(label:contains("valor")),
#heaven-form-container .field-group:has(label:contains("Valor")),
#heaven-form-container .field-group:has(label:contains("VALOR")) {
    display: none !important;
}

/* Loading do formulário */
.modal-content {
    position: relative;
}

.form-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 1, 21, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 20px;
    min-height: 300px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(168, 85, 247, 0.2);
    border-top-color: #A855F7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: #D1D5DB;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

#heaven-form-container button[type="submit"],
#heaven-form-container input[type="submit"],
#heaven-form-container .btn-submit,
#heaven-form-container .submit-button {
    background: linear-gradient(to right, #5D1AA0, #9333EA);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#heaven-form-container button[type="submit"]:hover,
#heaven-form-container input[type="submit"]:hover,
#heaven-form-container .btn-submit:hover,
#heaven-form-container .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    background: linear-gradient(to right, #6B2FA3, #A855F7);
}

#heaven-form-container button[type="submit"]:active,
#heaven-form-container input[type="submit"]:active,
#heaven-form-container .btn-submit:active,
#heaven-form-container .submit-button:active {
    transform: translateY(0);
}

/* Estilizar qualquer div que contenha o formulário */
#heaven-form-container > div {
    background: transparent;
}

/* Remover estilos padrão do navegador */
#heaven-form-container * {
    box-sizing: border-box;
}

/* Ajustar espaçamento geral */
#heaven-form-container > div > form,
#heaven-form-container > div > div {
    padding: 0;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
        margin: 1rem auto;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

