/* RESET & BASE STYLES */
:root {
    --color-bg: #FFFBF2; /* Warm Cream/Beige from Sales Page background */
    --color-surface: #FFFFFF;
    
    --color-primary: #1E3D33; /* Dark Forest Green (Text/Headings) */
    --color-primary-light: #2D4A3E;
    
    --color-accent: #D9A05B; /* Golden/Copper/Orange for buttons/highlights */
    --color-accent-hover: #C68E4B;
    
    --color-text-main: #1E3D33;
    --color-text-body: #5C6B66; /* Muted Green/Gray */
    
    --shadow-soft: 0 10px 40px rgba(30, 61, 51, 0.08); /* Greenish shadow */
    --shadow-hover: 0 20px 50px rgba(30, 61, 51, 0.15);
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 100px;
    
    --font-heading: 'DM Serif Display', serif; /* Editorial feel */
    --font-body: 'Outfit', sans-serif; /* Clean modern body */
    
    --transition-smooth: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 10% 10%, rgba(217, 160, 91, 0.05) 0%, transparent 40%);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

p {
    color: var(--color-text-body);
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1000px; /* Slightly wider */
    margin: 0 auto;
    padding: 20px;
}

.container-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SCREENS CONTROL */
.screen {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0; 
    min-height: 100vh;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.active-screen {
    opacity: 1;
    z-index: 10;
    position: relative;
}

.hidden-screen {
    opacity: 0;
    pointer-events: none;
    display: none;
}

/* ETAPA 1: CONFIRMAÇÃO */
.confirmation-card {
    background-color: var(--color-surface);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid rgba(217, 160, 91, 0.1); 
    position: relative;
    overflow: hidden;
}

/* Top decorative bar */
.confirmation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.icon-wrapper {
    font-size: 56px;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: inline-flex;
    padding: 20px;
    background-color: #FFF8EE; 
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(217, 160, 91, 0.2);
}

.main-title {
    font-size: 2.5rem;
    font-weight: 400; /* Serif doesn't need bold */
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), #B88647);
    color: var(--color-surface);
    padding: 18px 40px;
    border-radius: var(--radius-pill);
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(217, 160, 91, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 160, 91, 0.5);
    filter: brightness(1.1);
}

/* ETAPA 2: ÁREA DE MEMBROS */
#step-2 {
    background-color: var(--color-bg); 
}

#step-2 .container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.vip-header {
    text-align: center;
    margin-bottom: 60px;
}

.vip-header h2 {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.vip-header p {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-accent);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Simulated Illustration Area */
.card-illustration {
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #F5F7F6; /* Default light gray-green */
}

.card-illustration i {
    font-size: 64px;
    z-index: 2;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Background blob for illustration */
.card-illustration::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    z-index: 1;
}

/* Card Specific Colors */
.card.highlight .card-illustration { background-color: #E8F0E7; color: var(--color-primary); } /* Green */
.card.bonus .card-illustration { background-color: #FFF8E1; color: #F59E0B; } /* Yellow */
.card.bump .card-illustration { background-color: #F8F1F1; color: #D86D6D; } /* Pink/Red */
.card.extra .card-illustration { background-color: #EBF5FB; color: #5B9BD5; } /* Blue */

/* Premium Badge for Card 1 */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-accent);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(217, 160, 91, 0.3);
}

.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes button down */
}

.card-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    background-color: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.card:hover .card-action {
    background-color: var(--color-accent);
    color: white;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up, .fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .vip-header h2 { font-size: 2.2rem; }
    .main-title { font-size: 2rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .card-illustration { height: 160px; }
}
