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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #4a90b8 0%, #6db3d4 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page {
    display: none;
    width: 100%;
    max-width: 900px;
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes progressFill {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.card {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 60px 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.question-card {
    padding: 50px 60px;
}

/* Página Inicial */
.logo-section {
    margin-bottom: 40px;
}

.welcome-text {
    color: #1e90ff;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 5px;
}

.logo {
    font-size: 56px;
    font-weight: 900;
    color: #1e90ff;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.main-title {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #34495e;
    margin-bottom: 25px;
}

.description {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 35px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #34495e;
    font-weight: 500;
}

.dot {
    width: 8px;
    height: 8px;
    background: #d35400;
    border-radius: 50%;
}

.btn-primary {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
}

/* Barra de Progresso */
.progress-bar-container {
    background: white;
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
}

.progress-header span:first-child {
    color: #34495e;
}

.progress-percent {
    color: #1e90ff;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #d0e8f2;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e5a8e 0%, #5dade2 100%);
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
    animation: progressFill 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

/* Questões */
.question-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d0e8f2 0%, #a8d5f2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: pulse 3s infinite;
    box-shadow: 0 4px 15px rgba(93, 173, 226, 0.2);
    transition: all 0.3s ease;
}

.icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(93, 173, 226, 0.3);
}

.question-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: left;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.option:nth-child(1) {
    animation: slideIn 0.4s ease-out 0.1s backwards;
}

.option:nth-child(2) {
    animation: slideIn 0.4s ease-out 0.2s backwards;
}

.option:nth-child(3) {
    animation: slideIn 0.4s ease-out 0.3s backwards;
}

.option:nth-child(4) {
    animation: slideIn 0.4s ease-out 0.4s backwards;
}

.option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(93, 173, 226, 0.1), transparent);
    transition: left 0.6s;
}

.option:hover {
    border-color: #5dade2;
    background: #f8fcff;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 4px 12px rgba(93, 173, 226, 0.2);
}

.option:hover::before {
    left: 100%;
}

.option:active {
    transform: translateX(4px) scale(0.98);
}

.option-letter {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #5dade2 0%, #3498db 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.option:hover .option-letter {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.option-text {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
}

.back-btn {
    background: none;
    border: none;
    color: #5dade2;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
}

.back-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e5a8e;
    transition: width 0.3s ease;
}

.back-btn:hover {
    color: #1e5a8e;
    transform: translateX(-4px);
}

.back-btn:hover::before {
    width: 100%;
}

/* Página de Resultado */
.result-card {
    padding: 50px 70px;
}

.result-logo {
    margin-bottom: 30px;
}

.logo-result {
    font-size: 48px;
    font-weight: 900;
    color: #1e5a8e;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 20px;
    font-style: italic;
    color: #1e5a8e;
    font-family: 'Georgia', serif;
}

.congrats-title {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 30px;
}

.btn-large {
    padding: 20px 60px;
    font-size: 20px;
    margin-bottom: 25px;
}

.free-cruise-text {
    font-size: 28px;
    font-weight: 700;
    color: #1e5a8e;
    margin-bottom: 35px;
}

.package-section {
    background: #e8f4f8;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 35px;
}

.package-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.package-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.package-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #34495e;
    position: relative;
    padding-left: 30px;
}

.package-list li::before {
    content: "●";
    color: #5dade2;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.call-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.btn-phone {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.btn-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-phone:hover {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(211, 84, 0, 0.5);
    animation: none;
}

.btn-phone:hover::before {
    left: 100%;
}

.btn-phone:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
}

.limited-text {
    font-size: 14px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #34495e;
    font-weight: 500;
    flex-wrap: wrap;
}

.footer-disclaimer {
    background: #d0e8f2;
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #5a6c7d;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .card {
        padding: 40px 30px;
    }

    .question-card,
    .result-card {
        padding: 30px 25px;
    }

    .logo {
        font-size: 42px;
    }

    .main-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 24px;
    }

    .question-title {
        font-size: 24px;
    }

    .question-header {
        flex-direction: column;
    }

    .features {
        gap: 20px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .congrats-title {
        font-size: 32px;
    }
}
