/* Reset básico de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    margin: 0px;
}

/* minha imagem do banner */
.banner-two img {
    width: 100%;
    height: 700px;
    z-index: 999;
}

/* seção dos titulo do banner */
.title-main {
    text-align: center;
    position: absolute;
    top: 200px;
    right: 450px;
}

.title-main h1 {
    font-size: 4.4rem;
    color: rgb(214, 160, 23);
    margin: 0px;
}

.title-main h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0px;
}

.title-main hr {
    width: 450px;
}
/* Fim da seçao dos titulos do banner */

.container {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

/* Container Principal do Menu */
.menu-container {
    background-color:rgb(112, 112, 112); 
    width: 100%;
    max-width: 450px;
    padding: 35px 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Título */
.menu-title {
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Formulário e Opções */
.services-form {
    display: flex;
    flex-direction: column;
    gap: 14px; /* Espaçamento entre os cards */
}

/* Card de cada serviço */
.service-option {
    background-color: #f3f3f7; /* Fundo claro de cada opção */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.service-option:hover {
    background-color: #dadade;
}

/* Texto do serviço */
.service-option span {
    color: #2b2b2b;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Esconde o checkbox padrão do navegador */
.service-option input[type="checkbox"] {
    display: none;
}

/* Estilização do quadradinho personalizado (Checkbox) */
.custom-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #5a5a5a;
    background-color: #e5e7e5;
    display: inline-block;
    position: relative;
}

/* Efeito visual quando o checkbox é marcado (Checked) */
.service-option input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #15ce04;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Botão Confirmar */
.btn-confirmar {
    background-color: #fcfcfc; /* Tom esverdeado/cinza claro do botão */
    color: #3e4c45;
    border: none;
    padding: 10px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 25px auto 0 auto;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.2s ease;
}

.btn-confirmar:hover {
    background-color: #b8c2be;
}

/* --- Novas Estilizações --- */

/* Esconde elementos */
.hidden {
    display: none !important;
}

/* Mensagem de Erro */
.error-text {
    color: #ff3333;
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: none; /* Começa escondida */
    background-color: rgba(255, 0, 0, 0.1);
    padding: 8px;
    border-radius: 4px;
}

/* Container de Sucesso */
#success-container {
    animation: fadeIn 0.5s ease-in-out;
    padding: 40px 10px;
}

.success-title {
    color: #00ff00;
    font-size: 1.6rem;
    margin-top: 20px;
}

/* Ícone de Sucesso em CSS */
.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4bb543; /* Verde sucesso */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(75, 181, 67, 0.3);
}

/* Desenho do símbolo de "V" (Checkmark) dentro do círculo verde */
.checkmark {
    width: 20px;
    height: 40px;
    border: solid white;
    border-width: 0 5px 5px 0;
    transform: rotate(45deg);
    margin-bottom: 5px; /* Ajuste fino de posicionamento */
}

/* Animação suave para o surgimento da tela de sucesso */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Área de dados do Cliente (Desliza suavemente quando ativa) */
        .client-info-section {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .client-info-section.show {
            max-height: 500px; /* Permite a expansão fluida */
            margin-top: 10px;
        }

        /* Estilização dos Inputs */
        .input-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .input-group label {
            color: #1a1a1a;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .input-field {
            width: 100%;
            padding: 12px;
            border: 1px solid #cccccc;
            background-color: #f9f9f9;
            color: #2b2b2b;
            font-size: 1rem;
            outline: none;
        }

        .input-field:focus {
            border-color: #1a1a1a;
            background-color: #ffffff;
        }

        /* Organização de Data e Hora lado a lado */
        .datetime-row {
            display: flex;
            gap: 12px;
        }

        .datetime-row .input-group {
            flex: 1;
        }

        /* Botão Confirmar */
        .btn-confirmar {
            background-color: #cbd3cf;
            color: #3e4c45;
            border: none;
            padding: 14px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px auto 0 auto;
            cursor: pointer;
            width: 100%;
            max-width: 220px;
            transition: all 0.2s ease;
        }

        .btn-confirmar:hover {
            background-color: #b8c2be;
            color: #1a1a1a;
        }

        /* Container de Sucesso pós Confirmação */
        #success-container {
            text-align: center;
            padding: 30px 10px;
            display: none;
            animation: fadeIn 0.5s ease-in-out forwards;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background-color: #00ff00;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px auto;
        }

        .checkmark {
            width: 20px;
            height: 38px;
            border: solid white;
            border-width: 0 5px 5px 0;
            transform: rotate(45deg);
            margin-bottom: 6px;
        }

        .success-title {
            color: #00ff00;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Card resumo dos dados coletados */
        .summary-box {
            background-color: #ffffff;
            border-left: 4px solid #2e7d32;
            padding: 15px;
            text-align: left;
            margin-top: 25px;
            font-size: 0.95rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .summary-box p {
            margin-bottom: 8px;
        }

        .summary-label {
            font-weight: bold;
            color: #555;
        }

/* seção do rodapé */
.footer-website {
    display: flex;
    justify-content: space-around;
    background-color: black;
    text-align: center;
    padding: 30px 0px;
    width: 100%;
    gap: 20px;
}

.footer-website p{
    color: white;
    font-size: 14px;
    margin: 0px 0px 10px;
}

.footer-website h3 {
    margin-bottom: 10px;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h3{
    color: rgb(196, 142, 6);
    margin: 20px 0px;
}

.logo-text p{
    margin: 0px 0px;
    color: gray;
}

.option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.option h3 {
    color: white;
    margin-bottom: 10px;
}

.option ul,
li,
a {
    text-decoration: none;
    list-style: none;
    padding: 0px;
    color: white;
}

.option li {
    margin: 0px 0px 10px;
}


.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.website-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.website-menu h3 {
    color: white;
    margin-bottom: 10px;
}

.website-menu ul,
li,
a {
    text-decoration: none;
    list-style: none;
    padding: 0px;
    color: white;
}

.website-menu li {
    margin: 0px 0px 10px;
}
