* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  background: linear-gradient(to bottom, #0D0F40, #000000);
  color: white;
  margin: 0;
  padding: 0;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  opacity: 0.12;
  filter: blur(6px) brightness(0.6);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}
.faq-content a {
  color: #007BFF; /* O cualquier color que contraste bien con tu fondo */
  text-decoration: none;
  font-weight: 500;
}

.faq-content a:hover {
  text-decoration: underline;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.faq-container h1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #007BFF;
  transition: transform 0.2s ease;
}

.faq-container h1:hover {
  animation: pulse 0.4s ease-in-out;
}

.faq-video-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
  
  .faq-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
}

.faq-number {
flex-shrink: 0;
width: 100px;
font-size: 3.5rem;
font-weight: bold;
color: #007BFF;
user-select: none;
text-align: center;
line-height: 1.2;
transition: transform 0.2s ease;
text-shadow: 2px 2px 4px rgba(247, 234, 234, 0.3); /* sombra al número */
}

.faq-number:hover {
  animation: pulse 0.4s ease-in-out;
  color: #007BFF;
}

.faq-number:focus {
  animation: pulse 0.4s ease-in-out;
  outline: none;
}

.faq-content {
  flex: 1;
}

.faq-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007BFF;
  margin-bottom: 0.5em;
  margin-top: 0;
  line-height: 1.3;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.faq-title:hover {
  animation: pulse 0.4s ease-in-out;
}

.faq-title:focus {
  animation: pulse 0.4s ease-in-out;
  outline: none;
}

.faq-text {
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  text-decoration: none;
}

.faq-text.expanded {
  max-height: none;
}

.btn-vermas {
  background: none;
  border: none;
  color: #007BFF;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
  margin-top: 5px;
  font-weight: 600;
}

hr.faq-separator {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}
.social-links {
  text-align: center; 
  margin-top: 40px;
 
}

.social-links h3 {
  margin-bottom: 15px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
}

.social-links img {

  width: 40px;
  height: 40px;
  transition: transform 0.2s;

}

.social-links img:hover {
  transform: scale(1.1);
}
