/* Importando Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
    --cor-rosa: #e91e63;
    --cor-azul-escuro: #0a2647;
    --cor-fundo: #f4f7f9;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cor-fundo);
    padding: 15px;
    line-height: 1.5;
}

/* Container principal - mais adaptável */
.main-container {
    max-width: 520px;
    margin: 20px auto;
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

/* Header */
.header {
    margin-bottom: 35px;
}
.logo-img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* Frase sutil */
.header p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-top: 10px;
}

/* Perguntas */
.pergunta-texto {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cor-azul-escuro);
    margin-bottom: 25px;
    display: block;
    line-height: 1.3;
}

/* Opções */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.opcao-label {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 16px 18px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.25s;
    text-align: left;
    font-size: 1.05rem;
}

.opcao-label:hover {
    border-color: var(--cor-rosa);
    background: #fff5f8;
}

.opcao-label input {
    margin-right: 15px;
    accent-color: var(--cor-rosa);
    transform: scale(1.15);
}

/* Botões */
.btn-next, .btn-submit, .btn-voltar-step {
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.btn-next, .btn-submit {
    background: var(--cor-rosa);
    color: #fff;
}

.btn-voltar-step {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
    margin-bottom: 10px;
}

/* Cards de Recomendação */
.car-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--cor-rosa);
    margin-bottom: 18px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.car-brand {
    color: var(--cor-rosa);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.car-model {
    color: var(--cor-azul-escuro);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 8px 0;
}

/* Botão Voltar */
.btn-voltar {
    display: inline-block;
    margin-top: 25px;
    color: var(--cor-rosa);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
}

/* Ajustes para telas muito pequenas (mobile) */
@media (max-width: 480px) {
    .main-container {
        padding: 20px 15px;
        margin: 10px auto;
    }
    
    .pergunta-texto {
        font-size: 1.25rem;
    }
    
    .opcao-label {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .header p {
        font-size: 0.95rem;
    }
}