  body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    /* Loader Styling */
    .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1001;
      opacity: 1;
      transition: opacity 0.5s ease;
    }
    .loader.hidden {
      opacity: 0;
      pointer-events: none;
    }
    .loader img {
      max-width: 400px;
  max-height: 400px;
  width: 100%;
  height: auto;
  animation: zoomIn 2s ease-in-out infinite;
    }
    @keyframes zoomIn {
      0% { transform: scale(1); }
      50% { transform: scale(1.5); }
      100% { transform: scale(1); }
    }

    /* Sidebar Toggle Button */
    .sidebar-toggle {
      position: fixed;
      top: 10px;
      left: 10px;
      background: #D4A017;
      color: #000;
      border: none;
      font-size: 16px;
      padding: 10px;
      cursor: pointer;
      z-index: 1000;
      border-radius: 10px;
    }

    /* Sidebar Styling */
    .sidebar {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100%;
      background: #000;
      transition: left 0.3s ease-in-out;
      z-index: 999;
      padding-top: 60px;
    }
    .sidebar.open {
      left: 0;
    }
    .sidebar a {
      display: block;
      color: #D4A017;
      padding: 15px 20px;
      text-decoration: none;
      font-size: 18px;
    }
    .sidebar a:hover {
      background: #D4A017;
      color: #000;
    }

    /* Header Styling */
    header {
      background-color: #000;
      color: #FFF;
      padding: 20px;
      text-align: center;
      position: relative;
    }
    header h1 {
      color: #D4A017;
      margin: 0;
      font-size: 2rem;
    }
    header a {
  color: #D4A017;
  text-decoration: none;
  font-size: 19px;
  position: absolute;
  top: 13px;
  right: 21px;
}
.btn-entrar {
      position: absolute;
    top: -12px;
    right: 28px;
    background-color: #D4A017;
    border-radius: 5px;
}

    /* Main Content */
    main {
      padding: 20px;
      margin-bottom: 35px;
    }
    main p {
      color: #FFF;
      background-color: #000;
      padding: 15px;
      border-radius: 8px;
      font-size: 1rem;
    }

    /* Schedule Table Styling */
    .schedule-table {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      border-collapse: collapse;
      margin-top: 20px;
    }
    .schedule-table th, .schedule-table td {
      border: 1px solid #D4A017;
      padding: 10px;
      text-align: left;
      color: #FFF;
    }
    .schedule-table th {
      background-color: #D4A017;
      color: #000;
    }
    .schedule-table td {
      background-color: #222;
    }
    .closed {
      color: #FF5555;
      font-weight: bold;
    }

    footer {
  background-color: #000;
  color: #FFF;
  border-top: 1px solid #D4A017;
  padding: 20px 0;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
  opacity: 1; /* Garante que o footer seja vis«¿vel */
}
.footer-content {
  text-align: center;
  padding: 0 15px;
}
    
    .social-links, .map-link {
      margin: 15px 0;
    }
    .social-links a, .map-link a {
      margin: 0 10px;
      text-decoration: none;
      color: #D4A017;
      font-size: 20px;
      transition: color 0.3s ease;
    }
    .social-links a:hover, .map-link a:hover {
      color: #B8860B;
    }
    .social-links a span, .map-link a span {
      font-size: 14px;
      margin-left: 8px;
      vertical-align: middle;
    }
    .map-container {
      margin-top: 20px;
    }
    .map-container iframe {
      width: 100%;
      max-width: 300px;
      height: 200px;
      border: 0;
      display: block;
      margin: 0 auto;
    }
    .contact-us h3 {
      color: #D4A017;
      margin-bottom: 15px;
    }
    .contact-form {
      max-width: 400px;
      margin: 0 auto;
    }
    .contact-form label {
      display: block;
      margin: 10px 0 5px;
      font-size: 1rem;
      color: #FFF;
    }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 7px;
      margin-bottom: 15px;
      border: 1px solid #D4A017;
      border-radius: 5px;
      background: #222;
      color: #FFF;
      font-size: 1rem;
    }
    .contact-form button {
      background: #D4A017;
      color: #000;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
    }
    .contact-form button:hover {
      background: #B8860B;
    }
    .contact-phone {
  display: inline-flex;
  margin: 5px 0;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: #f0f0f0;
}

.contact-phone i {
  font-size: 1.4rem;
  color: #B8860B; /* Verde limÃ£o, destaca bem */
}

    /* Mobile-Specific Styles */
    @media (max-width: 768px) {
      header h1 {
        font-size: 1.5rem;
      }
      header a {
        font-size: 14px;
        top: 15px;
        right: 15px;
      }
      .sidebar {
        width: 200px;
        left: -200px;
      }
      .sidebar a {
        font-size: 16px;
        padding: 10px 15px;
      }
      .sidebar-toggle {
        font-size: 20px;
        padding: 8px;
      }
      main {
        padding: 15px;
      }
      main p {
        font-size: 0.9rem;
      }
      .btn-entrar {
  position: absolute;
    top: 50px;
    right: 28px;
    background-color: #D4A017;
    border-radius: 5px;
}
      .schedule-table th, .schedule-table td {
        padding: 8px;
        font-size: 0.9rem;
      }
      .social-links a, .map-link a {
        font-size: 18px;
      }
      .social-links a span, .map-link a span {
        font-size: 12px;
      }
      .loader img {
        max-width: 150px;
        max-height: 150px;
      }
    }

    @media (max-width: 480px) {
      header h1 {
        font-size: 1.2rem;
        position: absolute;
        left: 45px;
      }
      header a {
        font-size: 12px;
      }
      .sidebar {
        width: 180px;
        left: -180px;
      }
      .sidebar a {
        font-size: 14px;
      }
      .sidebar-toggle {
        font-size: 11px;
        padding: 6px;
        width: 49px;
      }
      
     .btn-entrar {
  position: absolute;
    top: 50px;
    right: 28px;
    background-color: #D4A017;
    border-radius: 5px;
}
      main p {
        font-size: 0.85rem;
      }
      .schedule-table th, .schedule-table td {
        padding: 6px;
        font-size: 0.85rem;
      }
      .footer-content p {
        font-size: 0.9rem;
      }
      .loader img {
        max-width: 250px;
        max-height: 250px;
      }
    }