body {
  margin: 0;
  padding: 0;
  background: #f5f7fa;
  font-family: Arial, Helvetica, sans-serif;
 
  display: flex;               
  justify-content: center;     
  align-items: center; 
  flex-direction: column;        
  
}
.logo{
    margin-top: left; 
    text-align: center; /* centraliza horizontalmente */
    padding: 20px 0;   /* espaçamento interno */
}
.logo-prestador {
    width: 150px; 
   
}
.horana{
  width:50px;
  

}
.container {
  display: inline-block;
  width: 70%;
  max-width: 400px;
  background: white;
  padding: 40px;
  margin: 40px auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  align-items: center; 
  justify-content: center;        

  
  
}

  
  
  

h2, h3 {
  text-align: center;
  margin-bottom: 20px;
}
.servicos-grid {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  align-items: center;
}

.servico-card {
  width: 100%;
  max-width: 800px;
  padding: 15;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: white;
  cursor: pointer;
  transition: 0.3s;
  align-items: center;
}

.servico-card:hover {
  border-color: #4a90e2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.servico-nome {
  font-weight: bold;
  font-size: 16px;
}

.servico-info {
  margin-top: 5px;
  font-size: 14px;
  color: #6b7280;
}


/* ===== DATAS ===== */

.datas-grid {
  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}


.data-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.data-header {
  font-weight: bold;
  margin-bottom: 10px;
}


/* ===== HORÁRIOS ===== */

.horarios-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hora-card {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  cursor: pointer;
  transition: 0.2s;
}

.hora-card:hover {
  background: #4a90e2;
  color: white;
  border-color: #4a90e2;
}

.sem-horario {
  font-size: 13px;
  font-weight: bold;
  color: #0a0a0a;

}


/* ===== DATA ESPECÍFICA ===== */

.form-data-especifica {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
  margin: auto;
  justify-content: center;
}

.date-picker {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  transition: 0.3s;
}

.date-picker:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

/* Botão */
.btn-submit {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #00bcd4, #673ab7);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.btn-success {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background-color: rgb(11, 163, 11);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  display: center;
}
.btn-success:hover {
  background-color: #5be462;
  transform: translateY(-2px);
}

.btn-submit:hover {
  background-color: #3578c6;
  transform: translateY(-2px);
}

.alert-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.custom-alert {
    width: 100%;
    max-width: 600px;
    padding: 18px 22px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    animation: fadeIn 0.4s ease-in-out;
}

/* SUCCESS */
.custom-alert.success {
    background: #e9f9ef;
    color: #0f5132;
    border-left: 6px solid #198754;
}

/* ERROR */
.custom-alert.error {
    background: #fdeaea;
    color: #842029;
    border-left: 6px solid #dc3545;
}

/* WARNING */
.custom-alert.warning {
    background: #fff4e5;
    color: #664d03;
    border-left: 6px solid #ffc107;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer {
  width: 100%;
  display: inline-block;
  background-color: #ffffff;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.05);  
  margin-top: 40px;
  padding: 40px 0;
  text-align: center;
  
  justify-content: center; 
  backdrop-filter:blur(8px);    
  background: rgb(255,255,255,0.9);
}

.footer-content p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.login {
  display: inline-block;
  width: 80%;
  max-width: 300px;
  background: white;
  padding: 20px;
  margin: 40px auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  align-items: center; 
  justify-content: center;    
      
  backdrop-filter: blur(20px);

  
  
}
body{
  
  min-height:100vh;
  width:100%;
  display:flex;
  justify-content:center;
  background: radial-gradient(circle at top right, rgba(0, 188, 212, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(103, 58, 183, 0.1), transparent);
}