body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #e0f2fe, #f8fafc);
  color: #020617;
}

/* HERO */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  height: 40px;
  margin-bottom: 22px;
}

/* SECTION */

.section {
  padding: 90px 20px;
  max-width: 760px;
  margin: auto;
  text-align: center;
}

/* GRID */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

/* CARDS */

.card {
  background: white;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(14,165,233,0.15);

  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* MAP */

.map-container {
  margin-top: 25px;
  border-radius: 26px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 280px;
  border: none;
}

/* CONTACT */

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 15px;
}

.contact-item {
  text-decoration: none;
  color: #0ea5e9;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  transition: 0.25s ease;
}

.contact-item img {
  width: 22px;
  height: 22px;
}

.contact-item:hover {
  transform: translateY(-3px);
}

/* CONSULTAS */

.consultas-box {
  background: white;
  padding: 38px;
  border-radius: 30px;

  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

input, textarea {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(14,165,233,0.2);
  font-family: 'Inter', sans-serif;
}

/* BUTTON */

button {
  background: #0ea5e9;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 18px;
  cursor: pointer;
}

/* SIDEBAR ULTRA ESTABLE 😌🔥 */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;

  width: 260px;
  height: 100vh;

  background: rgba(255,255,255,0.98);

  padding: 30px;

  z-index: 3000;

  border-right: 1px solid rgba(14,165,233,0.12);

  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  box-sizing: border-box;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar-header {
  margin-bottom: 22px;
  text-align: center;
}

.sidebar-header img {
  height: 22px;
  opacity: 0.85;
}

.sidebar a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #0ea5e9;

  font-size: 14px;
  font-weight: 500;

  opacity: 0.85;
  transition: 0.25s ease;
}

.sidebar a:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* OVERLAY */

.overlay {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.12);

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease;

  z-index: 2500;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* MENU BUTTON */

.menu-toggle {
  position: fixed;
  top: 18px;
  left: 18px;

  background: white;
  width: 36px;
  height: 36px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  cursor: pointer;
  z-index: 4000;

  transition: 0.25s ease;
}

.menu-toggle:hover {
  transform: scale(1.05);
}

/* FOOTER */

footer {
  margin-top: 70px;
  padding: 45px 20px;
  background: white;
  border-top: 1px solid rgba(14,165,233,0.08);
}

.footer-container {
  max-width: 760px;
  margin: auto;
  text-align: center;
}

.footer-imagotipo {
  height: 16px;
  opacity: 0.35;
  margin-bottom: 10px;
}

/* STATUS */

.open { color: #16a34a; }
.closed { color: #dc2626; }

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
