:root {
  --autopia-blue: #004a9e;
  --autopia-red: #d93025;
  --autopia-metal: #f1f3f4;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --border-color: #d8dde2;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --border-radius: 10px;
  --transition-speed: 0.3s;
}

.minimalist-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.minimalist-list li {
  background-color: #f8f8f8;
  border-left: 5px solid #f84f00;
  padding: 0.75em;
  margin: 0.5em 0;
  border-radius: 5px;
}

.minimalist-list li strong {
  color: #eb2309;
  font-size: 1.125em;
}

.disneyland-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
}

.disneyland-table thead th {
  background-color: var(--autopia-red);
  color: var(--text-light);
  padding: 1em;
  text-align: left;
  font-size: 1.1em;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.disneyland-table tbody tr {
  background-color: var(--text-light);
  box-shadow: 0 4px 12px var(--shadow-color);
  transition: transform var(--transition-speed) ease,
    box-shadow var(--transition-speed) ease;
  border-radius: var(--border-radius);
}

.disneyland-table tbody tr:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 74, 158, 0.15);
}

.disneyland-table td {
  padding: 1em;
  border-bottom: 1px solid var(--border-color);
}

.disneyland-table td:first-child {
  font-weight: 600;
  width: 40%;
}

.disneyland-table td:last-child {
  font-weight: 400;
  width: 60%;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: #1a202c;
  background-color: #f7fafc;
  transition: background-color 0.2s ease-in-out;
}

.faq-item summary:hover {
  background-color: #edf2f7;
}

.faq-item .faq-answer {
  padding: 1rem 1.25rem;
  background-color: #fff;
  color: #4a5568;
  line-height: 1.6;
}

.faq-item summary::marker {
  color: #d62828;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.25em;
  padding-bottom: 0.625em;
  border-bottom: 2px solid #ddd;
  color: red;
}

.rectangulo {
  display: flex;
  align-items: center;
  gap: 1em;
  background: linear-gradient(135deg, #e2f1f8 0%, #d2e7f3 100%);
  border-left: 6px solid #3ba2d5;
  border-radius: 12px;
  padding: 1.5em 1.75em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5em;
  transition: all 0.3s ease;
}

.rectangulo:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.rectangulo .imagen {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.rectangulo .texto span {
  display: block;
  font-size: 1.125em;
  font-weight: bold;
  color: #2a2a2a;
  margin-bottom: 0.5em;
}

.rectangulo .texto {
  font-size: 1em;
  line-height: 1.6;
  color: #2a2a2a;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .disneyland-table thead {
    display: none;
  }

  .disneyland-table tbody tr {
    display: block;
    margin-bottom: 1.25em;
  }

  .disneyland-table td {
    display: block;
    text-align: left;
    padding: 0.75em 1em;
    border-bottom: none;
    width: 100% !important;
  }

  .disneyland-table td:first-child {
    font-weight: 700;
    margin-bottom: 0.25em;
  }

  .rectangulo {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
  }

  .rectangulo .imagen {
    margin-bottom: 1em;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .minimalist-list li strong {
    font-size: 1em;
  }

  .faq-item summary,
  .faq-item .faq-answer {
    padding: 0.75rem 1rem;
  }
}
