/* Importando a fonte Nunito */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #FF6B00;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    font-family: 'Nunito', sans-serif;
}

/* Garantindo que todos os elementos usem a fonte Nunito */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background-color: var(--gray-200);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 28rem;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Progress Bar */
.progress-container {
    width: 90%;
    height: 8px;
    background-color: #fff;
    border-radius: 4px;
    margin: 3rem auto 3.5rem auto;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.progress-bar {
    width: 45%;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

/* Main Card */
.main-card {
    background-color: white;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 2rem;
    padding-top: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: cardEntrance 0.5s forwards;
    position: relative;
    margin-top: 1rem;
    flex: 1;
}

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon */
.icon-container {
    display: flex;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    z-index: 2;
}

.icon-circle {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 1rem;
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.spy-icon {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
}

.icon {
    display: none; /* Esconde o ícone SVG original */
}

/* Text Content */
h1 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
}

.subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.question {
    text-align: center;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

/* Buttons */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-button {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.95rem;
    font-weight: 700;
    gap: 0.875rem;
}

.action-button:hover {
    background-color: #e65c00;
}

.button-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
    margin-right: 0.875rem;
}

/* Bottom Navigation */
.bottom-nav {
    position: sticky;
    bottom: 0;
    width: 100%;
    max-width: 28rem;
    background-color: white;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin-top: -1px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #999; /* Cor mais suave para os ícones inativos */
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
    margin-bottom: 0.25rem;
    opacity: 0.8; /* Suaviza um pouco os ícones */
}

.nav-item span {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .progress-container {
        width: calc(100% - 2rem);
        margin: 3rem auto 3.5rem auto;
        padding: 0;
    }

    .main-card {
        border-radius: 1.5rem 1.5rem 0 0;
        margin: 1rem 0 0 0;
        width: 100%;
        min-height: calc(100vh - 8rem); /* Altura total menos o espaço da barra de progresso e nav */
    }

    .bottom-nav {
        max-width: 100%;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
} 