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

body {
  background: #000;
  color: #fff;
}

/* TOPO */
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 80px; /* Espaço para o navbar fixo */
}

.btn-agendar {
  background: #ffdd00;
  color: #000;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-agendar:hover {
  background: #ffd400;
}

/* EVENTOS */
.agenda {
  padding: 20px 40px;
}

.evento {
  display: flex;
  align-items: center;
  background: #111;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px;
}

.event-date {
  color: #ffd400;
  display: flex;
  align-items: center;
  gap: 32px;
  /* distância equilibrada entre data e card */
  margin-bottom: 28px;
  font-size: 22px;
  width: 900;

}

.data {
  color: #ffdd00;
  text-align: center;
  margin-right: 15px;
  font-size: 25px;
}

.data span {
  font-size: 20px;
}

.evento img {
  width: 300px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

.info {
  flex: 1;
}

.status {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 15px;
}

.disponivel {
  background: rgba(117, 239, 68, 0.15);
  color: #44ef61;
}

.quase {
  background: rgba(255, 166, 0, 0.247);
  color: rgb(255, 166, 0);
}

.indisponivel {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.btn-whats {
  background: #ffdd00;
  color: #000;
  padding: 10px 15px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-whats:hover {
  box-shadow: 0 0 15px #ffdd00;
  transform: scale(1.05);
}

.disabled {
  background: #555;
  cursor: not-allowed;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #444;
  padding: 25px;
  border-radius: 12px;
  width: 1000px;
}

.modal input {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border-radius: 5px;
  border: none;
}

.row {
  display: flex;
  gap: 10px;
}

.obs {
  font-size: 12px;
  margin: 10px 0;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.send {
  background: #ffdd00;
  border: 30px;
  padding: 8px 15px;
  border-radius: 6px;
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  padding: 60px 40px 30px;
  border-top: 2px solid #ffcc00;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h4 {
  color: #ffcc00;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-section p {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid #ffcc00;
  border-radius: 50%;
  color: #ffcc00;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.footer-bottom p {
  font-size: 13px;
  color: #999;
  margin: 8px 0;
}

.footer-bottom p strong {
  color: #ffcc00;
}

/* ==================== RESPONSIVIDADE MOBILE COMPLETA ==================== */
@media (max-width: 768px) {
  /* Navbar responsiva padronizada em /Navebar/navbar.css */

  /* Top section responsivo */
  .top {
    flex-direction: column !important;
    text-align: center !important;
    padding: 20px !important;
    gap: 20px !important;
  }

  .top h1 {
    font-size: 2rem !important;
  }

  .btn-agendar {
    width: 100% !important;
    max-width: 250px !important;
    margin: 0 auto !important;
  }

  /* Agenda responsivo */
  .agenda {
    padding: 20px !important;
  }

  /* Eventos responsivo */
  .evento {
    flex-direction: column !important;
    text-align: center !important;
    padding: 20px !important;
    gap: 15px !important;
  }

  .evento img {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto 15px auto !important;
  }

  .event-date {
    flex-direction: column !important;
    gap: 10px !important;
    font-size: 18px !important;
    width: 100% !important;
  }

  .data {
    margin-right: 0 !important;
    font-size: 20px !important;
  }

  .info {
    text-align: center !important;
  }

  .info h2 {
    font-size: 1.5rem !important;
  }

  .info p {
    font-size: 0.9rem !important;
  }

  .btn-whats {
    width: 100% !important;
    text-align: center !important;
    margin: 10px 0 !important;
  }

  /* Modal responsivo */
  .modal-content {
    width: 95% !important;
    max-width: none !important;
    padding: 20px !important;
  }

  .row {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .actions {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .send, .close {
    width: 100% !important;
    text-align: center !important;
  }

  /* Footer responsivo */
  .footer {
    padding: 30px 15px !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-section {
    text-align: center !important;
  }

  /* Imagens responsivas */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Botões responsivos */
  .btn, button {
    width: 100% !important;
    margin: 10px 0 !important;
  }

  /* Grid responsivo geral */
  .grid, .grid-cols-2, .grid-cols-3, .grid-cols-4 {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* Flex responsivo */
  .flex {
    flex-direction: column !important;
  }

  /* Espaçamentos responsivos */
  .p-4, .px-4, .py-4 {
    padding: 15px !important;
  }

  .m-4, .mx-4, .my-4 {
    margin: 15px !important;
  }

  /* Textos grandes */
  .text-5xl, .text-4xl, .text-3xl {
    font-size: 2rem !important;
  }

  .text-2xl, .text-xl {
    font-size: 1.5rem !important;
  }
}