/* Aplicar la misma fuente del menú (Montserrat) a todos los elementos */

/* Ubicación con la misma tipografía del menú */
.location-info {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 0, 0.8)) !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.location-info p {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  color: #f8f9fa !important;
  line-height: 1.6 !important;
  margin-bottom: 0.8rem !important;
}

.location-info p strong {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #FFD700 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* Título de sección con la misma fuente del menú */
.section-subheading {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #f8f9fa !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
  letter-spacing: 0.0625em !important;
  line-height: 1.4 !important;
}

/* Footer con la misma fuente del menú */
.footer {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: #cccccc !important;
  letter-spacing: 0.0625em !important;
  line-height: 1.5 !important;
}

/* Animaciones */
@keyframes rainbow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Forzar aplicación de Montserrat en toda la ubicación */
#contact .location-info,
#contact .location-info *,
.location-section,
.location-section * {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* Forzar Montserrat en el footer */
footer,
footer *,
.footer,
.footer * {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: #cccccc !important;
  letter-spacing: 0.0625em !important;
}

/* Eliminar cursiva de todos los elementos */
.page-section h3.section-subheading,
.page-section .section-subheading.h3,
.section-subheading,
header.masthead .masthead-subheading,
.portfolio-caption-subheading,
.portfolio-modal .modal-content p.item-intro,
#contact .location-info,
#contact .location-info *,
.location-section,
.location-section *,
footer,
footer *,
.footer,
.footer * {
  font-style: normal !important;
}