/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais - Dark Mode Premium */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #141414;
    --color-bg-tertiary: #1a1a1a;
    --color-bg-card: #1e1e1e;
    
    /* Destaques Dourado/Laranja */
    --color-accent-primary: #f59e0b;
    --color-accent-secondary: #fb923c;
    --color-accent-gradient: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
    
    /* Azul escuro para profundidade */
    --color-blue-dark: #1e3a5f;
    --color-blue-medium: #2563eb;
    
    /* Textos */
    --color-text-primary: #ffffff;
    --color-text-secondary: #a3a3a3;
    --color-text-muted: #737373;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.3);
    
    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Tipografia */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 50%, var(--color-blue-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-2xl) 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.highlight {
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.badge svg {
    color: var(--color-accent-primary);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--color-accent-gradient);
    color: var(--color-bg-primary);
    box-shadow: var(--shadow-glow);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: var(--color-accent-primary);
    border: 2px solid var(--color-accent-primary);
}

.cta-button.secondary:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

/* Demo Section - Refatorada */
.demo-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
    position: relative;
}

.demo-header-text {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.demo-main-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.demo-main-subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 420px;
    height: 840px;
    background: #0f0f0f;
    border-radius: 40px;
    padding: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 10px #1a1a1a;
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

.phone-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #0f0f0f;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0e1419 0%, #0a0f14 100%);
    border-radius: 32px;
    overflow-y: auto;
    overflow-x: hidden;
}

.phone-screen::-webkit-scrollbar {
    width: 0;
    display: none;
}

.phone-screen::-webkit-scrollbar-thumb {
    background: transparent;
}

.phone-screen {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Header do Sistema */
.system-header {
    background: transparent;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.08);
    position: sticky;
    top: 0;
    z-index: 5;
}

.header-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1.5px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px;
}

.header-logo svg {
    width: 100%;
    height: 100%;
    color: var(--color-accent-primary);
}

.header-text {
    flex: 1;
}

.header-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 3px;
}

.header-desc {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    line-height: 1.2;
}

/* Badge de Localização */
.location-section {
    padding: 14px 18px;
    text-align: center;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--color-accent-primary);
    max-width: 100%;
    overflow: hidden;
}

.location-badge svg {
    flex-shrink: 0;
}

.location-badge span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Conteúdo Principal */
.system-content {
    padding: 24px 22px 18px;
    text-align: center;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 14px;
}

.brand-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
}

.phone-display {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    color: var(--color-accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.phone-display svg {
    flex-shrink: 0;
}

/* Indicador de Etapas */
.steps-section {
    padding: 22px 18px 18px;
    text-align: center;
}

.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.step-circle.active {
    background: var(--color-accent-gradient);
    border-color: var(--color-accent-primary);
    color: var(--color-bg-primary);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
}

.step-divider {
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.step-title {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Formulário */
.form-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 26px;
    margin: 0 4px 24px;
}

.form-icon-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 18px;
    background: rgba(245, 158, 11, 0.08);
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-icon-wrapper svg {
    color: var(--color-accent-primary);
}

.form-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 9px;
    text-align: center;
}

.form-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 26px;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 22px;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.input-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.input-field {
    padding: 13px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    color: var(--color-text-primary);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.input-field::placeholder {
    color: var(--color-text-muted);
}

.input-field:focus {
    outline: none;
    border-color: var(--color-accent-primary);
    background: rgba(245, 158, 11, 0.05);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.continue-button {
    width: 100%;
    padding: 15px;
    background: var(--color-accent-gradient);
    color: var(--color-bg-primary);
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.continue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.continue-button:active {
    transform: translateY(0);
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .phone-frame {
        width: 340px;
        height: 680px;
    }
    
    .header-logo {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
    
    .header-title {
        font-size: 0.95rem;
    }
    
    .header-desc {
        font-size: 0.68rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-description {
        font-size: 0.85rem;
    }
    
    .phone-display {
        font-size: 0.88rem;
        padding: 10px 16px;
    }
    
    .form-section {
        padding: 24px 18px;
        margin: 0 16px 20px;
    }
    
    .form-icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .form-heading {
        font-size: 1.2rem;
    }
    
    .continue-button {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 300px;
        height: 600px;
        padding: 12px;
        border-radius: 36px;
    }
    
    .phone-notch {
        width: 120px;
        height: 24px;
        top: 18px;
    }
    
    .phone-screen {
        border-radius: 28px;
    }
    
    .system-header {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .header-logo {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .header-title {
        font-size: 0.9rem;
    }
    
    .header-desc {
        font-size: 0.65rem;
    }
    
    .location-section {
        padding: 12px 14px;
    }
    
    .location-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .system-content {
        padding: 20px 16px;
    }
    
    .brand-name {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .brand-description {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .phone-display {
        font-size: 0.85rem;
        padding: 9px 14px;
        gap: 7px;
    }
    
    .steps-section {
        padding: 18px 14px;
    }
    
    .step-circle {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .step-divider {
        width: 18px;
    }
    
    .step-title {
        font-size: 0.82rem;
    }
    
    .form-section {
        padding: 22px 16px;
        margin: 0 14px 18px;
    }
    
    .form-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .form-heading {
        font-size: 1.15rem;
    }
    
    .form-description {
        font-size: 0.82rem;
    }
    
    .input-field {
        padding: 11px 13px;
        font-size: 0.88rem;
    }
    
    .continue-button {
        padding: 13px;
        font-size: 0.95rem;
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-xl);
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: var(--color-bg-primary);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg), 0 0 0 8px var(--color-bg-tertiary);
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: var(--color-bg-primary);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
    border-radius: 32px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: var(--spacing-md);
}

.phone-screen::-webkit-scrollbar {
    width: 4px;
}

.phone-screen::-webkit-scrollbar-thumb {
    background: var(--color-accent-primary);
    border-radius: 10px;
}

/* Código antigo removido - Agora usa as classes refatoradas acima */

.calendar-day.selected {
    background: var(--color-accent-gradient);
    color: var(--color-bg-primary);
}

.demo-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs);
}

.time-slot {
    padding: var(--spacing-sm);
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.time-slot:hover {
    border-color: var(--color-accent-primary);
}

.time-slot.selected {
    background: var(--color-accent-gradient);
    color: var(--color-bg-primary);
}

.demo-button {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--color-accent-gradient);
    color: var(--color-bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-card {
    background: var(--color-bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(245, 158, 11, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.benefit-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    align-items: center;
}

.step-card {
    background: var(--color-bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(245, 158, 11, 0.1);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-accent-gradient);
    color: var(--color-bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}

.step-icon {
    font-size: 2.5rem;
    margin: var(--spacing-md) 0;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--color-accent-primary);
    text-align: center;
    display: none;
}

/* Admin Panel */
.admin-panel {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-primary);
}

.admin-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.admin-card {
    background: var(--color-bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.admin-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.admin-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.admin-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.admin-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.feature-item svg {
    color: var(--color-accent-primary);
    flex-shrink: 0;
}

/* Trust Section */
.trust-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-secondary);
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.trust-card {
    background: var(--color-bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid rgba(245, 158, 11, 0.1);
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
}

.trust-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.trust-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.4;
}

.trust-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-primary);
}

.pricing-card {
    max-width: 480px;
    margin: var(--spacing-xl) auto 0;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(30, 30, 30, 0.8) 100%);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(245, 158, 11, 0.15);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.price-badge {
    display: inline-block;
    background: var(--color-accent-gradient);
    color: var(--color-bg-primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.price-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-primary);
    margin-top: 8px;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cents {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-primary);
    margin-top: 8px;
}

.price-period {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.feature {
    font-size: 1rem;
    color: var(--color-text-primary);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-button {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--color-accent-gradient);
    color: var(--color-bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    position: relative;
    z-index: 1;
}

.price-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.6);
}

.price-guarantee {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-md);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .amount {
        font-size: 4rem;
    }
    
    .currency {
        font-size: 1.5rem;
    }
    
    .cents {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: var(--spacing-xl);
    }
}

/* Final CTA */
.final-cta {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.cta-guarantee {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-top: var(--spacing-lg);
}

/* Footer */
.footer {
    padding: var(--spacing-lg) 0;
    background: var(--color-bg-primary);
    text-align: center;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.footer p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-frame {
        width: 280px;
        height: 560px;
    }
    
    .benefits-grid,
    .admin-features,
    .trust-cards {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        display: block;
        transform: rotate(90deg);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid,
    .admin-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .step-arrow {
        display: block;
    }
}

/* Smooth scrolling e acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states para acessibilidade */
a:focus,
button:focus {
    outline: 2px solid var(--color-accent-primary);
    outline-offset: 2px;
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}