  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Reset básico de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #fffafa;
    color: #333;
  }
  
  header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #4CAF50;
    padding: 20px 0;
    text-align: center;
    color: white;
  }

  header img{
    width: 50px;
    object-fit: contain;
}
  
  .header-container h1 {
    font-size: 2.5rem;
  }
  
  nav ul {
    list-style-type: none;
    padding: 10px;
  }
  
  nav ul li {
    display: inline;
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  .main-content {
    display: flex;
    padding: 20px;
    text-align: center;
  }

  .main-content img {
    width: 400px;
  }
  
  
  .banner {
    position: relative;
    width: 100%;
    height: 300px;
    background: url("/img/wallpaper.jpg") no-repeat center;
    background-size: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.011);
}



.titulo {
    font-weight: 700;
    font-size: 32px;
    color: white;
    text-shadow: 8px 8px 10px rgba(0, 0, 0, 0.315);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.315);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

  .intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .intro p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .feature-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 15px;
    width: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .feature-box p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .feature-box .button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .feature-box .button:hover {
    background-color: #45a049;
  }

  .container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .containerPet{
    width: 100%;
    max-width: 1300px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .containerReserva{
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  

  h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-bottom: 5px;
    font-size: 16px;
  }
  
  input, select, textarea {
    padding: 10px;
    margin-bottom: 15px;
    border-color: #4CAF50 !important; 
    border-radius: 4px;
    transition: 0.1s;
  }
  input:focus, select:focus, textarea:focus{
    box-shadow: 0 0 0 .25rem #87f18b !important;
    border: none;
  }
  button {
    padding: 12px;
    background-color: #4CA  F50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
  }
  
  button:hover{
    background-color: #45a049;
  }
  
  .resultado {
    margin-top: 20px;
  }
  

  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  thead {
    background-color: #f0f0f0;
  }
  
  th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  button {
    margin: 2px;
    cursor: pointer;
  }
  
  .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .modal-content {
      background-color: #fff;
      padding: 20px;
      width: 400px;
      border-radius: 8px;
      position: relative;
  }
  
  .fechar {
      position: absolute;
      right: 10px;
      top: 10px;
      cursor: pointer;
      font-size: 24px;
  }
  
  footer {
    text-align: center;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    margin-top: 30px;
  }
  
 
