* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background: #000;
    color: #fff;
}

label {
    color: white;
}

input.input { 
    padding: 8px; 
    width:100%; 
}

.btn-horario { 
    padding: 8px 12px; 
    border: 1px solid #124ef3; 
    border-radius: 5px; 
    background: #fff; 
    cursor: pointer; 
    transition: 0.2s; 
}

.btn-horario.selecionado { 
    background: #124ef3; 
    color: #fff; 
}

.btn-horario.indisponivel { 
    background: #e53935; 
    color: #fff; 
    cursor: not-allowed; 
}

.btn-horario.indisponivel-consecutivo { 
    background: #f57c00; 
    color: #fff; 
    cursor: not-allowed; 
}

header {
    width: 100%;
    background-color: #000000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

#agendamento h2 {
    color: white;
    text-align: center;
    padding: 30px;
}

.btn-agendamento,
.btn-agendamento-main {
    background-color: #124ef3;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-agendamento {
    padding: 10px 20px;
}

.btn-agendamento:hover,
.btn-agendamento-main:hover {
    background-color: #0d3ec9;
}

.btn-agendamento-main {
    padding: 10px 30px;
    font-size: 1.2rem;
    margin-bottom: -16px;
}

.agendamento-label {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

section {
    padding: 100px 50px 50px 50px;
}

input.input {
    padding: 10px;
}

#inicio {
    background-attachment: fixed;
    background-size: 500px 500px;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#inicio h1 {
    font-size: 3rem;
    margin-bottom: -16px;
    text-shadow: 2px 2px 5px #000;
}

#servicos {
    background-color: #000000;
}

#servicos h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
    color: #fff;
}

#servicos .cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

#servicos .card {
    background: #fff;
    color: #333;
    width: 260px;
    margin: 10px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#servicos .card h3 {
    font-size: 1.2rem;
    color: #124ef3;
    margin-bottom: 10px;
}

#servicos .card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

#servicos .card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

#servicos .card.selecionado {
    background-color: #124ef3;
    color: #fff;
    border: 2px solid #124ef3;
}

#servicos .card.selecionado h3,
#servicos .card.selecionado p {
    color: #fff;
}

div#servicosCheckbox {
    color: white;
}

.valorTotalbloco {
    display: flex;
    justify-content: center;
    align-items: center;
}

#valorTotal {
    color: white;
}

#valortotalp {
    color: white;
    font-size: 20px;
}
/*foi tirado do index.php*/
.card { 
    background-color:#fff; 
    border:1px solid #ccc; 
    padding:15px; 
    border-radius:8px; 
    cursor:pointer; 
    transition: background 0.3s, color 0.3s; 
}
.card.selecionado { 
    background-color:#124ef3; 
    color:#fff; 
}
.card-info p { 
    margin:5px 0; 
}
.btn-horario { 
    padding:8px 12px; 
    border:1px solid #ccc; 
    border-radius:5px; 
    cursor:pointer; 
    background:#f0f0f0; 
    transition: background 0.3s, color 0.3s; 
}
.btn-horario.selecionado { 
    background:#124ef3; 
    color:#fff; 
}
.btn-horario.indisponivel { 
    background:#e74c3c; color:#fff; 
    cursor:not-allowed; 
}
.btn-horario.indisponivel-consecutivo { 
    background:#ffb3b3; 
    color:#000; 
    cursor:not-allowed; 
}
/**/

footer {
    background-color: #222;
    color: #fff;
    padding: 30px 50px;
    text-align: center;
}

@media(max-width:768px) {
    header {
        padding: 20px;
    }

    #agendamento h2 {
        padding: 20px;
    }

    #inicio p {
        margin-top: -33px;
        padding: 10px;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: #222;
        width: 200px;
        padding: 20px;
        border-radius: 5px 0 0 5px;
    }

    #inicio h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 5px #000;
    }

    .menu.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .btn-agendamento {
        width: 100%;
        text-align: center;
    }

    #servicos .cards {
        flex-direction: column;
        align-items: center;
    }

    #servicos .card {
        width: 90%;
        max-width: 320px;
        font-size: 0.9rem;
    }
}

html {
    scroll-behavior: smooth;
}
