/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary-color: #ff7010;    /* 🔵 Azul principal */
    --secondary-color: #ff7010;  /* 🔷 Azul escuro */
    --success-color: #27AE60;    /* 🟢 Verde sucesso */
    --warning-color: #F39C12;    /* 🟡 Amarelo aviso */
    --danger-color: #E74C3C;     /* 🔴 Vermelho perigo */
    --light-color: #ff7010;      /* ⚪ Cinza claro */
    --dark-color: #2C3E50;       /* 🔷 Azul escuro */
    --white: #FFFFFF;            /* ⚪ Branco */
    --gray-100: #F8F9FA;         /* ⚪ Cinza 100 */
    --gray-200: #E9ECEF;         /* ⚪ Cinza 200 */
    --gray-300: #DEE2E6;         /* ⚪ Cinza 300 */
    --gray-400: #CED4DA;         /* ⚪ Cinza 400 */
    --gray-500: #ADB5BD;         /* ⚪ Cinza 500 */
    --gray-600: #6C757D;         /* ⚪ Cinza 600 */
    --gray-700: #495057;         /* ⚪ Cinza 700 */
    --gray-800: #343A40;         /* ⚪ Cinza 800 */
    --gray-900: #212529;         /* ⚪ Cinza 900 */
    
    --border-radius: 12px;                    /* 📐 Raio da borda padrão */
    --border-radius-lg: 20px;                 /* 📐 Raio da borda grande */
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);     /* 🌑 Sombra padrão */
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15); /* 🌑 Sombra grande */
    --transition: all 0.3s ease;              /* ⏱️ Transição suave */
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-image: url('../bg1.jpg?v=3') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Forçar background em todos os elementos */
* {
    background-color: transparent !important;
}

html, body {
    background-color: transparent !important;
    background-image: url('../bg1.jpg?v=3') !important;
}

/* ===== HEADER ===== */
.funil-header {
    background: transparent;                   /* 🔲 Fundo completamente transparente */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    background: var(--primary-color);         /* 🔵 Fundo azul principal */
    color: var(--white);                      /* ⚪ Texto branco */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-subtitle {
    font-weight: 600;
    color: var(--gray-700);                   /* ⚪ Texto cinza 700 */
    font-size: 1.1rem;
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
    flex-direction: row;
    background: transparent;                   /* 🔲 Fundo completamente transparente */
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);       /* 📐 Raio da borda */
}

.btn-back {
    background: transparent;                    /* 🔲 Fundo transparente */
    color: var(--gray-600);                    /* ⚪ Texto cinza 600 */
    border: 1px solid var(--gray-300);        /* ⚪ Borda cinza 300 */
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);       /* 📐 Raio da borda */
    font-size: 0.8rem;
    transition: var(--transition);             /* ⏱️ Transição suave */
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 1001;
    opacity: 0.8;
    position: relative;
}

.btn-back:hover {
    background: var(--gray-100);              /* ⚪ Fundo cinza 100 */
    color: var(--gray-700);                   /* ⚪ Texto cinza 700 */
    border-color: var(--gray-400);            /* ⚪ Borda cinza 400 */
    opacity: 1;
    transform: translateY(-1px);
}

.btn-back:active {
    transform: translateY(0);
}

.progress-bar {
    width: 250px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 112, 16, 0.3) 0%, 
        rgba(255, 138, 46, 0.3) 25%, 
        rgba(255, 112, 16, 0.3) 50%, 
        rgba(255, 138, 46, 0.3) 75%, 
        rgba(255, 112, 16, 0.3) 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    border-radius: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        #ff7010 0%, 
        #ff8a2e 25%, 
        #ff7010 50%, 
        #ff8a2e 75%, 
        #ff7010 100%);
    background-size: 200% 100%;
    border-radius: 20px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 20%;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 0 10px rgba(255, 112, 16, 0.5),
        0 0 20px rgba(255, 112, 16, 0.3),
        0 0 30px rgba(255, 112, 16, 0.1);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: shimmer 2s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.progress-text {
    font-size: 0.875rem;
    color: var(--white);                      /* ⚪ Texto branco */
    font-weight: 500;
}

/* ===== MAIN CONTENT ===== */
.funil-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
    background: transparent !important;
}

.step-content {
    background: transparent !important;        /* 🔲 Fundo completamente transparente */
    border-radius: var(--border-radius-lg);    /* 📐 Raio da borda grande */
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); /* 🌟 Sombra sutil para demarcar contorno */
    border: 1px solid rgba(255, 255, 255, 0.1); /* 🔲 Borda muito sutil */
}

.step-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);                      /* ⚪ Texto branco */
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Cutoff Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.step-description {
    font-size: 1.1rem;
    color: var(--white);                      /* ⚪ Texto branco */
    margin-bottom: 0.5rem;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.step-time {
    font-size: 0.9rem;
    color: var(--white);                      /* ⚪ Texto branco */
    margin-bottom: 2rem;
}

/* ===== FORM STYLES ===== */
.funil-form {
    text-align: left;
}

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

.form-control {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: var(--transition);
    background: transparent;                   /* 🔲 Fundo completamente transparente */
    color: white !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 112, 16, 0.25);
    outline: none;
    color: white !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Garantir que o texto dos inputs seja sempre visível */
.form-control,
.form-control:focus,
.form-control:active,
.form-control:hover {
    color: white !important;
    -webkit-text-fill-color: white !important;
    -webkit-text-stroke: 0 !important;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== GENDER SELECTION ===== */
.gender-selection {
    margin: 2rem 0;
}

.gender-selection h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.gender-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gender-option {
    background: transparent;                   /* 🔲 Fundo completamente transparente */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.gender-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.gender-option.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #ff8a2e);
    color: var(--white);
}

.gender-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.gender-option.selected .gender-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.gender-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.gender-option .fa-arrow-right {
    opacity: 0;
    transition: var(--transition);
    color: var(--gray-400);
}

.gender-option:hover .fa-arrow-right,
.gender-option.selected .fa-arrow-right {
    opacity: 1;
    color: var(--primary-color);
}

.gender-option.selected .fa-arrow-right {
    color: var(--white);
}

/* ===== AGE SELECTION ===== */
.age-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.age-option {
    background: transparent;                   /* 🔲 Fundo completamente transparente */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.age-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-lg);
}

.age-option.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #ff8a2e);
    color: var(--white);
}

.age-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.age-option.selected .age-avatar {
    border-color: var(--white);
    background: rgba(255, 112, 16, 0.2);
}

.age-avatar i {
    font-size: 2rem;
    color: #2a2a2a;
    transition: var(--transition);
}

.age-option.selected .age-avatar i {
    color: var(--white);
}

.age-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 5px;
}

.age-desc {
    color: #444;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.age-option.selected .age-text {
    color: var(--white);
}

.age-option.selected .age-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== SEGMENT SELECTION ===== */
.segment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.segment-option {
    background: transparent;                   /* 🔲 Fundo completamente transparente */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.segment-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.segment-option.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #ff8a2e);
    color: var(--white);
}

.segment-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.segment-option.selected .segment-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.segment-text {
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.segment-option.selected .checkbox-custom {
    background: var(--white);
    border-color: var(--white);
}

.segment-option.selected .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.8rem;
}

/* ===== STRATEGY SELECTION ===== */
.strategy-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.strategy-option {
    background: transparent;                   /* 🔲 Fundo completamente transparente */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.strategy-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.strategy-option.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #ff8a2e);
    color: var(--white);
}

.strategy-text {
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff8a2e); /* 🟠➡️🟠 Gradiente laranja */
    color: var(--white);                                               /* ⚪ Texto branco */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.btn-primary:disabled {
    background: var(--gray-300);              /* ⚪ Fundo cinza 300 */
    color: var(--gray-500);                   /* ⚪ Texto cinza 500 */
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #2ECC71); /* 🟢➡️🟢 Gradiente verde */
    color: var(--white);                                                 /* ⚪ Texto branco */
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.btn-continue {
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

/* ===== CONSCIOUSNESS STATES ===== */
.consciousness-state {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.consciousness-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.consciousness-state.before {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.consciousness-state.after {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border: 2px solid rgba(46, 204, 113, 0.3);
}

.consciousness-state:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.state-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.consciousness-state.before .state-icon {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.consciousness-state.after .state-icon {
    color: #ffffff;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

.state-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consciousness-state.before .state-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.consciousness-state.after .state-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.state-description {
    position: relative;
    z-index: 2;
}

.state-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.state-description li {
    padding: 0.5rem 0;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.consciousness-state.before .state-description li {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.consciousness-state.after .state-description li {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.state-description li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.consciousness-state.before .state-description li::before {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.consciousness-state.after .state-description li::before {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.comparison-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c42);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-item:hover::before {
    opacity: 1;
}

.comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.comparison-item h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

/* ===== PHONE MOCKUP (KEPT FOR OTHER STEPS) ===== */
.phone-mockup {
    width: 220px;
    height: 380px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 12px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.1;
}

.phone-time {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.phone-lock {
    font-size: 2.5rem;
    color: var(--gray-600);
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.phone-notifications {
    width: 100%;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.notification {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--success-color), #2ECC71);
}

.notification:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.notification i {
    color: var(--success-color);
    font-size: 1.1rem;
    background: rgba(46, 204, 113, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    min-width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== SUCCESS CHART ===== */
.success-chart {
    margin: 3rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.success-chart h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-bars {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: end;
    height: 220px;
    padding: 1rem;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.bar-fill {
    width: 80px;
    border-radius: 12px 12px 0 0;
    transition: all 1.5s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bar-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.bar-fill.traderfy {
    background: linear-gradient(to top, var(--success-color), #2ECC71, #27AE60);
    border: 2px solid rgba(46, 204, 113, 0.3);
}

.bar-fill.conventional {
    background: linear-gradient(to top, var(--gray-400), var(--gray-500), var(--gray-600));
    border: 2px solid rgba(108, 117, 125, 0.3);
}

.bar-label {
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: transparent;                   /* 🔲 Fundo completamente transparente */
    border-radius: var(--border-radius-lg);
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
}

/* ===== LOGO ANIMATION ===== */
.logo-pulse {
    animation: logoPulse 2s ease-in-out infinite !important;
    filter: drop-shadow(0 0 15px rgba(255, 112, 16, 0.5)) !important;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.logo-pulse:hover {
    filter: drop-shadow(0 0 25px rgba(255, 112, 16, 0.8)) !important;
    transform: scale(1.1) !important;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(255, 112, 16, 0.5));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 30px rgba(255, 112, 16, 1));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(255, 112, 16, 0.5));
    }
}

/* ===== FOOTER ===== */
.funil-footer {
    background: transparent;                   /* 🔲 Fundo completamente transparente */
    padding: 2rem 0;
    text-align: center;
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
.funil-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.funil-step.active {
    display: block !important;
    z-index: 1000;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .step-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25); /* 🌟 Sombra mais sutil no mobile */

    }
    
    .step-title {
        font-family: 'Cutoff Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    }
    
    .progress-container {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin: 0 auto;

    }
    
    .btn-back {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        gap: 0.2rem;
    }
    
    .progress-bar {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        border: solid 1px #0e354e;
    }
    
    .step-title {
        font-size: 2rem;
    }
    
    .gender-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .age-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .segment-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .strategy-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-item {
        padding: 1.5rem;
    }
    
    .consciousness-state {
        padding: 1.5rem;
    }
    
    .state-icon {
        font-size: 3rem;
    }
    
    .state-title {
        font-size: 1.3rem;
    }
    
    .state-description li {
        font-size: 0.9rem;
    }
    
    .logo-pulse {
        animation: logoPulse 4s ease-in-out infinite;
    }
    
    @keyframes logoPulse {
        0%, 100% {
            transform: scale(1);
            filter: drop-shadow(0 0 8px rgba(255, 112, 16, 0.3));
        }
        50% {
            transform: scale(1.05);
            filter: drop-shadow(0 0 20px rgba(255, 112, 16, 0.6));
        }
    }
    
    .phone-mockup {
        width: 150px;
        height: 250px;
    }
    
    .chart-bars {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }
    
    .bar-fill {
        width: 100px;
        height: 100px;
        border-radius: 8px;
    }
    
    .success-chart {
        padding: 1.5rem;
    }
    
    .notification {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .progress-bar {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .step-content {
        padding: 1.5rem 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* 🌟 Sombra ainda mais sutil */
    }
    
    .step-title {
        font-family: 'Cutoff Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .phone-mockup {
        width: 120px;
        height: 200px;
    }
    
    .progress-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .progress-bar {
        width: 100px;
    }
}

/* ===== PERSONALIZED SUMMARY ===== */
.personalized-summary {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.personalized-summary h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Cutoff Pro', 'Poppins', sans-serif;
}

.summary-content {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
}

.summary-item {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.summary-value {
    color: var(--white);
}

/* ===== TERMS NOTICE ===== */
.terms-notice {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    text-align: center;
}

.terms-notice p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

/* ===== CERTIFICADO CIENTÍFICO ===== */
.scientific-certificate {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 112, 16, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.scientific-certificate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 112, 16, 0.1), transparent);
    animation: certificateShimmer 3s infinite;
}

@keyframes certificateShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.certificate-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.certificate-header i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.certificate-title {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.certificate-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.certificate-text {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.certificate-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #ccc;
    position: relative;
    z-index: 2;
}

.certificate-footer span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== BOTÃO CONTINUAR ===== */
.continue-btn {
    background: linear-gradient(135deg, var(--primary-color), #ff8a2e);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 112, 16, 0.4);
    transition: all 0.3s ease;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1000;
    cursor: pointer;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 112, 16, 0.6);
    color: var(--white);
    text-decoration: none;
}

.continue-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 112, 16, 0.4);
}

.continue-btn i {
    transition: transform 0.3s ease;
}

.continue-btn:hover i {
    transform: translateX(3px);
} 