/* ===========================
   TITULO
=========================== */
.titulo {
  text-align: center;
  color: var(--negro-texto);
}

.titulo h2 {
  font-size: var(--titulo-general);
  margin-bottom: 20px;
}

.titulo p {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

/* ===========================
   CONTACT GRID & CARDS
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 3rem auto;
}

.contact-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 3.5rem;
  color: var(--amarillo-general);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 2.5rem;
  color: var(--amarillo-general);
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 1.8rem;
  color: var(--negro-texto);
  line-height: 30px;
}

/* ===========================
   SOCIAL LINKS
=========================== */
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--amarillo-general);
  color: white;
  border-radius: 50%;
  font-size: 2.5rem;
  transition: transform 0.3s, background-color 0.3s;
  text-decoration: none;
}

.social-link:hover {
  transform: scale(1.1);
  background-color: var(--amarillo-hover);
}

/* ===========================
   FAQ SECTION
=========================== */
.faq-section {
  background-color: white;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2.5rem;
  color: var(--negro-texto);
  margin-bottom: 1rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  font-weight: bold;
  color: var(--negro-texto);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.faq-description {
  font-size: 1.8rem;
  color: var(--negro-texto);
}

/* ===========================
   BOOKING INFO
=========================== */
.booking-info {
  text-align: center;
  padding: 2rem;
  background-color: var(--amarillo-general);
  color: white;
  max-width: 1200px;
  margin: 30px auto 0 auto;
}

.booking-info h2 {
  color: white;
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.booking-info p {
  font-size: 1.8rem;
  color: white;
  line-height: 3rem;
}

/* ===========================
   MEDIA QUERIES
=========================== */

/* Tablets */
@media (max-width: 768px) {
  .titulo h2 {
    font-size: var(--titulo-general-reducido);
  }
  .titulo p {
    font-size: 1.875rem;
  }

  .contact-icon {
    font-size: 3rem;
  }

  .contact-card h3 {
    font-size: 2rem;
  }

  .contact-card p {
    font-size: 1.5rem;
  }

  .social-link {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1.8rem;
  }

  .faq-description {
    font-size: 1.5rem;
  }

  .booking-info h2 {
    font-size: 2rem;
  }

  .booking-info p {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .titulo h2 {
    font-size: var(--titulo-general-super-reducido);
  }

  .titulo p {
    font-size: 1.5rem;
  }

  .contact-icon {
    font-size: 3rem;
  }

  .contact-card h3 {
    font-size: 1.8rem;
  }

  .contact-card p {
    font-size: 1.4rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 1.6rem;
  }

  .faq-description {
    font-size: 1.4rem;
  }

  .booking-info h2 {
    font-size: 1.8rem;
  }

  .booking-info p {
    font-size: 1.4rem;
  }
}
