/* Fuente y Reset */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Sora', sans-serif;
}

/* Body */
body {
  background-color: #000000;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}



/* Container */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 4rem 1rem;
}

/* Card */
.contact-card {
  background-color: #000000;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 0 25px rgba(119, 0, 255, 0.3);
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: foldOpen 0.8s ease forwards;
  transform-origin: top center;
  transform: scaleY(0);
}

/* Animación de apertura */
@keyframes foldOpen {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.contact-card h2 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: #7700ff;
}

.contact-card p {
  margin-bottom: 1.5rem;
  color: #aa66ff;
}

/* Redes */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
  filter: brightness(100%);
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Formulario */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background-color: #141414;
  border: none;
  padding: 0.8rem;
  border-radius: 10px;
  color: #7700ff;
  font-size: 1rem;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #7700ff;
}

.contact-form button {
  padding: 0.8rem;
  border: none;
  background: #7700ff;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #5e00cc;
}

/* Responsive */
@media (max-width: 600px) {

  .contact-card {
    padding: 1.5rem;
  }
}
.footer {
  background-color: #000000;
  padding: 2rem 1rem;
  margin-top: 4rem;
  
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  color: rgb(76, 0, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.footer p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer .socials {
  display: flex;
  gap: 1rem;
}

.footer .socials a {
  transition: transform 0.3s ease;
}

.footer .socials a:hover {
  transform: scale(1.2);
}

.footer .socials img {
  width: 24px;
  height: 24px;
  ;
}
.faqs-section {
  margin-top: 2.5rem;
  text-align: left;
}

.faqs-section h3 {
  color: #b491f6;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.faqs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: #111;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(119, 0, 255, 0.2);
  padding: 1rem 1.2rem;
  transition: transform 0.3s;
}

.faq-card h4 {
  margin-bottom: 0.3rem;
  color: #7700ff;
  font-size: 1.1rem;
}

.faq-card p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

.faq-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 16px #7700ff55;
}