/* ===== FULL PASS INVITE PAGE STYLES ===== */

:root {
    --primary-color: #feaf50;
    --primary-dark: #e09940;
    --secondary-color: #4ECDC4;
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: rgba(254, 175, 80, 0.2);
    --glow-color: rgba(254, 175, 80, 0.3);
}

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

.fullpass-invite-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    position: relative;
    overflow-x: hidden;
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
    display: none;
}

.floating-element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -8%;
    animation-delay: 7s;
}

.floating-element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 80%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

/* Main Content */
.invite-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

/* Header Section */
.invite-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.header-icon {
    color: var(--primary-color);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px var(--glow-color));
}

.invite-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #feaf50;
    line-height: 1.2;
    width: 100%;
    display: block;
}

.invite-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    width: 100%;
    display: block;
    text-align: center;
}

.invite-subtitle .warning {
    color: lightcoral;
}

/* Stats Section */
.capture-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    position: static;
    width: 100%;
}

.stats-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stats-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

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

.stats-progress {
    width: 100%;
    max-width: 400px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 1s ease-out;
}

.progress-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.benefits-title {
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(254, 175, 80, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #000;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-description strong {
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: #000;
    box-shadow: 0 4px 20px rgba(254, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(254, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer */
.invite-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 1s ease-out 1.2s both;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-content i {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .invite-content {
        padding: 2rem 1rem;
    }
    
    .invite-title {
        font-size: 2.25rem;
    }
    
    .invite-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .invite-title {
        font-size: 1.75rem;
    }

    .benefits-title {
        font-size: 1.75rem;
    }

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

    .choice-title {
        font-size: 1.75rem;
    }
}

/* ===== NEW COMPONENTS STYLES ===== */

/* Component 2: Seção de Escolha */
.choice-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.choice-title {
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.choice-cards {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.choice-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.choice-card:hover::before {
    opacity: 1;
}

.individual-card {
    border-color: var(--border-color);
}

.individual-card:hover {
    transform: translateY(-8px);
    border-color: var(--text-secondary);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

.fullpass-card {
    border-color: var(--primary-color);
    position: relative;
}

.fullpass-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(254, 175, 80, 0.2);
}

.choice-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--text-primary);
}

.badge-recomendado {
    font-size: 0.8rem;
    background: var(--primary-color);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
    margin-left: 0.5rem;
}

.choice-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.button-primary, .button-secondary {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.button-primary {
    background: var(--primary-color);
    color: #000;
}

.button-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 175, 80, 0.3);
}

.button-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button-secondary:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 175, 80, 0.3);
}

/* Component 4: Rota de Retorno */
.return-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.return-link i {
    font-size: 0.8rem;
}

/* ===== NOVA ESTRUTURA SIMPLIFICADA ===== */

/* Seção de Cabeçalho */
.invitation-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.invitation-header .header-icon {
    margin-bottom: 2rem;
}

.invitation-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.product-name-highlight {
    color: var(--primary-color);
    display: block;
}

.invitation-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Seção de Opções de Caminho */
.path-options {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.path-cards {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.path-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.path-card:hover::before {
    opacity: 1;
}

.path-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.path-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.path-button {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* Card Individual */
.path-card-individual {
    border-color: var(--border-color);
}

.path-card-individual:hover {
    transform: translateY(-8px);
    border-color: var(--text-secondary);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

.button-individual {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
}

.button-individual:hover {
    background: var(--text-secondary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Card Full Pass - Destaque Visual */
.path-card-fullpass {
    border-color: var(--primary-color);
    position: relative;
}

.path-card-fullpass:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(254, 175, 80, 0.2);
}

.button-fullpass {
    background: var(--primary-color);
    color: #000;
}

.button-fullpass:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 175, 80, 0.3);
}

/* Mobile Responsiveness for New Simplified Structure */
@media (max-width: 768px) {
    .invitation-title {
        font-size: 2rem;
    }

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

    .path-cards {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 500px;
    }

    .path-card {
        padding: 2rem;
    }

    .path-button {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .invitation-header {
        margin-bottom: 3rem;
    }

    .invitation-title {
        font-size: 1.75rem;
    }

    .invitation-subtitle {
        font-size: 1rem;
    }

    .path-card {
        padding: 1.5rem;
    }

    .path-card h3 {
        font-size: 1.25rem;
    }
}