@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");
.contactame-body {
  margin: 0;
  color: #ffffff;
  background: linear-gradient(2deg, rgb(30, 31, 38) 2%, rgb(9, 9, 121) 62%, rgb(30, 31, 38) 100%) fixed;
  display: grid;
  place-items: start center;
}

.page {
  width: min(920px, 92vw);
  margin: clamp(24px, 6vh, 64px) auto;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(0, 255, 153, 0.08), transparent 60%), #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 10px rgb(255, 255, 255);
  overflow: hidden;
}

.header-contactame {
  padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(135deg, #00ff99, #0066ff);
  color: #052a1f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-contactame h1 {
  margin: 0 0 6px 0;
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 800;
  letter-spacing: 0.3px;
  color: black;
}
.header-contactame p {
  margin: 0;
  color: #063b2b;
  font-weight: 600;
}

form {
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: clamp(16px, 2.5vw, 28px);
  background: radial-gradient(800px 380px at 120% 10%, rgba(59, 130, 246, 0.14), transparent 60%), radial-gradient(900px 520px at -10% 120%, rgba(0, 255, 153, 0.1), transparent 60%), transparent;
}

.row {
  display: grid;
  gap: clamp(16px, 2.5vw, 28px);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .row.two {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 700;
  color: #ddd;
}

.control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.2s ease, transform 0.05s ease, border-color 0.2s ease;
}
.control:focus-within {
  border-color: rgba(0, 255, 153, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 255, 153, 0.15), 0 8px 30px rgba(0, 255, 153, 0.5);
  transform: translateY(-1px);
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
}
.control input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px rgb(29, 37, 55) inset !important;
  -webkit-text-fill-color: #fff !important;
}
.control input, .control textarea {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 16px;
  outline: none;
}
.control input:autofill, .control textarea:autofill {
  background-color: red;
}
.control input::placeholder, .control textarea::placeholder {
  color: #ccc;
}
.control textarea {
  min-height: 140px;
  resize: vertical;
}

.hint {
  color: #777;
  font-size: 13px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ddd;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
}
.checkbox input {
  transform: translateY(2px);
}

.errors {
  color: #ffb4b4;
  font-weight: 600;
  font-size: 14px;
  display: none;
}
.errors.show {
  display: block;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(16px, 2.5vw, 28px);
}

.btn {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 10px rgb(255, 255, 255);
  transition: transform 0.06s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  color: #052a1f;
  background: linear-gradient(135deg, #00ff99, #0066ff);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 255, 153, 0.5);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 10px rgb(255, 255, 255);
}

.badge {
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #facc15;
}

.toast {
  position: fixed;
  inset: auto 16px 16px auto;
  background: rgba(22, 163, 74, 0.95);
  color: #03210f;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 4px 10px rgb(255, 255, 255);
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

body {
  background-color: #0f172a;
  color: white;
  line-height: 1.6;
}

a:visited {
  color: #ffffff; /* Fuerza blanco */
  text-decoration: none;
}

/* Header */
.header {
  background: linear-gradient(2deg, rgb(30, 31, 38) 2%, rgb(9, 9, 121) 62%, rgb(30, 31, 38) 100%);
  overflow: hidden;
  height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 50px;
}
.menu input {
  display: none;
}
.menu label {
  display: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  color: white;
}

.navbar li {
  cursor: pointer;
  transition: color 0.3s ease;
  color: white;
}

.navbar li:hover {
  color: #facc15;
}

.header-content {
  display: flex;
  padding-top: 50px;
}

/* Texto animado en el header */
.header-txt {
  width: 50%;
}
.header-txt h1 {
  font-size: 3rem;
  animation: fadeInDown 1s ease forwards;
}
.header-txt span {
  color: #facc15;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-1 {
  display: inline-block;
  background: #facc15;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 25px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}
.btn-1:hover {
  background: #fde047;
  transform: scale(1.05);
}

.social-media {
  width: 100%;
  display: flex;
}
.social-media li {
  display: inline-flex;
  padding: 5px;
  margin: 10px 5px;
  color: white;
}
.social-media li i {
  margin-right: 3px;
}

/* Imagen principal */
.header-img {
  width: 40%;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, #00ff99, #0066ff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Imagen dentro del contenedor */
}
.header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.header-img {
  /* Efecto hover */
}
.header-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 255, 153, 0.5);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* ===== ABOUT ME ===== */
.about-me {
  padding: 40px 20px;
  background-color: #1e1f26; /* Fondo oscuro */
  color: #fff;
}
.about-me h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  border-bottom: 3px solid #fde047; /* Línea decorativa verde */
  display: inline-block;
  padding-bottom: 5px;
}

.about-me-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.about-me-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fde047; /* Texto verde en la parte izquierda */
}

.about-me-description p {
  margin-bottom: 15px;
}

.about-me-skills {
  font-size: 1rem;
  line-height: 1.8;
  color: #ddd;
}
.about-me-skills ul {
  list-style: none;
  margin: 20px 30px;
  padding: 0;
}
.about-me-skills ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.about-me-skills ul li::before {
  content: "●"; /* Icono de viñeta */
  position: absolute;
  left: 0;
  color: #fde047;
  font-size: 1.2rem;
}
.about-me-skills a {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #fde047;
  color: #fde047;
  border-radius: 4px;
  margin-top: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.about-me-skills a:hover {
  background-color: #fde047;
  color: #1e1f26;
}

/* Responsive */
@media (max-width: 768px) {
  .about-me-content {
    grid-template-columns: 1fr;
  }
}
/* ===== RECENT WORK ===== */
/* Sección Recent Work */
.recent-work {
  padding: 80px 20px;
  background: linear-gradient(2deg, rgb(30, 31, 38) 2%, rgb(9, 9, 121) 62%, rgb(30, 31, 38) 100%);
  color: #fff;
  text-align: center;
  height: 70vh;
}
.recent-work h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  border-bottom: 3px solid #fde047;
  display: inline-block;
  padding-bottom: 5px;
}

/* Tarjeta de trabajo */
.work-card {
  text-align: center;
}

.work-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.work-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 10px;
}
.work-img:hover img {
  transform: scale(1.05);
}
.work-img {
  /* Aparece suave al hover */
}
.work-img:hover .overlay {
  opacity: 1;
  transform: scale(1);
}

/* Overlay con fade */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 255, 153, 0.75); /* Verde translúcido */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(1.05);
  border-radius: 10px;
  /* Botón del overlay */
}
.overlay a {
  color: #000;
  background: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* Título debajo de la imagen */
.work-title {
  margin-top: 10px;
  font-size: 1rem;
  color: #ccc;
}

/* Swiper botones */
.swiper-button-prev,
.swiper-button-next {
  color: #fde047;
}

.swiper-pagination-bullet-active {
  background: #fde047;
}

/* Footer */
.footer {
  background-color: #1e1f26;
  color: #ccc;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  color: #fde047;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.footer-section p {
  line-height: 1.6;
  font-size: 0.95rem;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section ul li a:hover {
  color: #fde047;
}

/* Redes sociales */
.footer-social-media ul {
  display: flex;
  gap: 15px;
}
.footer-social-media ul li a {
  color: #ccc;
  font-size: 1.4rem;
  transition: color 0.3s, transform 0.3s;
}
.footer-social-media ul li a:hover {
  color: #fde047;
  transform: scale(1.2);
}

/* Parte inferior */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #777;
}

/* ===================== */
/*      RESPONSIVE        */
/* ===================== */
/* Tablets */
@media (max-width: 1024px) {
  /* HEADER */
  .header {
    height: auto;
    padding-bottom: 40px;
  }
  .menu {
    padding: 0 20px;
  }
  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .header-txt {
    width: 100%;
  }
  .social-media {
    justify-content: center;
  }
  .header-img {
    width: 200px;
    height: 200px;
    padding: 4px;
  }
  .header-txt h1 {
    font-size: 2.5rem;
  }
  .header-img img {
    width: 250px;
  }
  /* ABOUT ME */
  .about-me-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* Móviles */
@media (max-width: 768px) {
  /* Contenedor del menú */
  .menu {
    justify-content: space-between;
    padding: 10px 15px;
    align-items: center;
  }
  /* Icono hamburguesa */
  .menu label {
    display: block;
    cursor: pointer;
    font-size: 1.8rem;
    color: #fff;
  }
  /* Navbar horizontal en móviles */
  .navbar {
    display: flex;
    flex-direction: row; /* Horizontal */
    gap: 15px;
    background: #1e1f26;
    padding: 8px 12px;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    right: 40px;
    border-radius: 8px;
  }
  /* Mostrar menú al hacer click */
  #menu-toggle:checked + label + .navbar {
    transform: translateY(0);
  }
  .navbar a {
    color: white;
    text-decoration: none;
    padding: 6px 10px;
  }
  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }
  /* HEADER */
  .header-txt h1 {
    font-size: 2rem;
  }
  .header-img {
    width: 150px;
    height: 150px;
    padding: 3px;
  }
  .btn-1 {
    margin-top: 15px;
  }
  /* ABOUT ME */
  .about-me {
    padding: 60px 15px;
  }
  .about-me h2 {
    font-size: 1.6rem;
  }
  .about-me-description {
    font-size: 1rem;
  }
  /* RECENT WORK */
  .recent-work {
    padding: 60px 15px;
    height: auto;
  }
  .recent-work h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  .work-img img {
    height: 180px;
  }
  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social-media ul {
    justify-content: center;
  }
}
/* Extra pequeños (teléfonos muy pequeños) */
@media (max-width: 480px) {
  .header-txt h1 {
    font-size: 1.6rem;
  }
  .header-img {
    width: 120px;
    height: 120px;
    padding: 2px;
  }
  .header-img img {
    width: 110%; /* Más zoom para que el rostro siga visible */
    height: 110%;
  }
  .recent-work h2,
  .about-me h2 {
    font-size: 1.4rem;
  }
}
/*Banner*/
.compas-banners {
  padding: 40px;
  background: #0f172a;
  color: #ffffff;
  height: 60vh;
  max-width: 1200px;
  margin: auto;
  margin-top: 60px;
}
.compas-banners .compas-head {
  margin-bottom: 20px;
}
.compas-banners .compas-head h2 {
  font-size: 2rem;
  margin: 0 0 6px;
}
.compas-banners .compas-head p {
  color: #ddd;
  margin: 0;
}
.compas-banners .banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 768px) {
  .compas-banners .banner-grid {
    grid-template-columns: 1fr;
  }
}
.compas-banners .banner-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgb(255, 255, 255);
}
.compas-banners .banner-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.compas-banners .banner-card .banner-cta {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 255, 153, 0.75);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.compas-banners .banner-card:hover img {
  transform: scale(1.03);
}

/* Scope solo para la página de FAQs */
body.faq-body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background: linear-gradient(2deg, rgb(30, 31, 38) 2%, rgb(9, 9, 121) 62%, rgb(30, 31, 38) 100%) fixed;
}

/* Header */
.faq-header {
  max-width: 980px;
  margin: 32px auto 8px;
  padding: 0 clamp(10px, 1.5vw, 16px);
}
.faq-header .back-link {
  display: inline-block;
  color: #ddd;
  text-decoration: none;
  font-weight: 600;
}
.faq-header .back-link:hover {
  text-decoration: underline;
}
.faq-header h1 {
  margin: 8px 0 8px;
  font-size: clamp(28px, 3vw, 35px);
  line-height: 1.15;
  text-shadow: 0 4px 10px rgb(255, 255, 255);
}
.faq-header .subtitle {
  margin: 0;
  color: #ccc;
  font-size: 0.95rem;
}

/* Main wrapper */
.faq-main {
  max-width: 980px;
  margin: 10px auto 80px;
  padding: 0 clamp(10px, 1.5vw, 16px);
}

/* Controles (buscador + botones) */
.faq-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 10px;
  flex-wrap: wrap;
}
.faq-controls .search-wrap {
  flex: 1 1 420px;
  min-width: 260px;
  position: relative;
}
.faq-controls .search-wrap #faq-search {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  outline: none;
  box-shadow: 0 4px 10px rgb(255, 255, 255);
}
.faq-controls .search-wrap #faq-search::placeholder {
  color: #777;
}
.faq-controls .search-wrap #faq-search:focus {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 4px rgba(0, 255, 153, 0.25);
}
.faq-controls .actions {
  display: flex;
  gap: 8px;
}

/* Botones genéricos */
.btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
  color: #facc15;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.06s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgb(255, 255, 255);
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.22);
}
.btn:active {
  transform: translateY(0);
}
.btn.ghost {
  background: transparent;
}

/* Chips de filtro (categorías) */
.faq-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 16px;
}
.faq-filters .filter-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #ddd;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.06s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.faq-filters .filter-chip:hover {
  transform: translateY(-1px);
}
.faq-filters .filter-chip[aria-pressed=true] {
  color: #111;
  background: linear-gradient(135deg, #00ff99, #0066ff);
  box-shadow: 0 8px 30px rgba(0, 255, 153, 0.5);
  border: none;
}

/* Lista/Acordeón */
.faq-list {
  display: grid;
  gap: 10px;
}

/* Tarjeta FAQ */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)), #0f172a;
  box-shadow: 0 4px 10px rgb(255, 255, 255);
  /* encabezado del ítem */
}
.faq-item .faq-toggle {
  /* reset accesible */
  all: unset;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  border-radius: 16px;
}
.faq-item .faq-toggle:focus-visible {
  outline: 3px solid rgba(0, 255, 153, 0.7);
  outline-offset: 3px;
}
.faq-item .faq-toggle .faq-header {
  margin: 0;
  padding: 0;
}
.faq-item .faq-toggle .faq-header .faq-q-text {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  /* enfatiza palabras clave */
}
.faq-item .faq-toggle .faq-header .faq-q-text em, .faq-item .faq-toggle .faq-header .faq-q-text strong {
  color: #facc15;
}
.faq-item .faq-toggle .faq-header .faq-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #ccc;
  font-size: 0.875rem;
  margin-top: 4px;
}
.faq-item .faq-toggle .faq-header .faq-meta .badge {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ddd;
  font-weight: 600;
}
.faq-item .faq-toggle .faq-icon {
  flex: none;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}
.faq-item .faq-panel {
  padding: 0 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-item .faq-panel[hidden] {
  display: none;
}
.faq-item .faq-panel .faq-a {
  color: #ffffff;
  opacity: 0.92;
  line-height: 1.6;
  padding-top: 12px;
  font-size: 0.95rem;
}
.faq-item .faq-panel .faq-a p {
  margin: 0.6em 0;
}
.faq-item .faq-panel .faq-a a {
  color: #facc15;
  text-decoration: underline;
}
.faq-item .faq-panel .faq-a a:hover {
  opacity: 0.9;
}
.faq-item .faq-panel .faq-a ul, .faq-item .faq-panel .faq-a ol {
  padding-left: 1.2rem;
}
.faq-item .faq-panel .faq-a code, .faq-item .faq-panel .faq-a pre {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}

/* Estados */
.state {
  margin: 16px 0;
  color: #ccc;
  font-size: 0.95rem;
}

.hidden {
  display: none !important;
}

/* Skeletons de carga */
.faq-item.skeleton .faq-q, .faq-item.skeleton .faq-a {
  height: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 20%, rgba(255, 255, 255, 0.12) 40%, rgba(255, 255, 255, 0.06) 60%);
  background-size: 200% 100%;
  border-radius: 8px;
  animation: faq-pulse 1.2s ease-in-out infinite;
}
.faq-item.skeleton .faq-q {
  width: 65%;
  margin: 16px 18px;
  height: 20px;
}
.faq-item.skeleton .faq-a {
  width: 92%;
  margin: 8px 18px 20px;
  height: 14px;
}

@keyframes faq-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* Responsivo */
@media (max-width: 768px) {
  .faq-controls .actions {
    width: 100%;
    justify-content: flex-end;
  }
  .faq-item .faq-toggle .faq-header .faq-meta {
    display: none;
  }
}
@media (max-width: 480px) {
  .faq-header {
    margin-top: 24px;
  }
  .btn {
    padding: 9px 12px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: white;
}

a:visited {
  color: #ffffff; /* Fuerza blanco */
  text-decoration: none;
}

/*# sourceMappingURL=styles.css.map */
