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

html,
body {
    -webkit-font-smoothing: antialiased;
    background-color: #f9f9f9;
}

.header {
    background-image: url("/static/img/site-banner.png?");
    background-size: cover;
    background-position: center;
    height: 200px;
    /* Ajuste a altura conforme necessário */
    color: white;
}


.btn,
body,
input,
button,
title,
td {
    font-family: "Inter", "Roboto", serif;
    font-size: 0.95rem !important;
}

body,
input {
    color: #3c3c3c !important;
}

a {
    color: #3c3c3c !important;
    text-decoration: none;
}


/* Configuracao */

.container {
    max-width: 1200px;
    /* margin: 20 auto; */
    margin-top: 20px;
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.screen {
    display: none;
}

.screen.active {
    display: block;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.calendar button {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
}

.calendar button:hover {
    background: #f5f5f5;
}

.time-slot {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: left;
    background: white;
    cursor: pointer;
}

.time-slot:hover {
    background: #f5f5f5;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.button-group {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.button-primary {
    background: #2563eb;
    color: white;
}

.button-secondary {
    background: white;
    border: 1px solid #ddd;
}

.summary-box {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.step-bar {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    position: relative;
}

.step-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
}

.step-step.active {
    background: #2563eb;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    transform: translateY(-50%);
    z-index: 0;
}