.elementor-183 .elementor-element.elementor-element-30ba3c0{--display:flex;}/* Start custom CSS for html, class: .elementor-element-27407a8 */<style>
  /* --- ESTRUCTURA GENERAL DEL ACORDEÓN --- */
  .faq-accordion-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px 10px;
    font-family: inherit;
  }

  .faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }

  /* --- CABECERA (Pregunta) --- */
  .faq-summary {
    padding: 18px 22px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .faq-summary::-webkit-details-marker {
    display: none;
  }

  /* --- ICONO (+) y (-) --- */
  .faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-left: 15px;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background-color: #0f172a;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  }

  .faq-icon::before {
    top: 6px;
    left: 0;
    width: 100%;
    height: 2px;
  }

  .faq-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 100%;
  }

  /* Estado Abierto: El icono rota y cambia fondo */
  .faq-item[open] .faq-summary {
    background-color: #f8fafc;
    color: #0f172a;
  }

  .faq-item[open] .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
  }

  /* --- CONTENEDOR Y ANIMACIÓN CONTINUA HACIA ABAJO --- */
  .faq-content {
    /* Usamos CSS Grid para el cálculo dinámico de altura */
    display: grid;
    grid-template-rows: 0fr;
    
    /* Animación fluida de la apertura vertical y la opacidad */
    transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                background-color 0.3s ease;
    
    background-color: #ffffff;
    border-top: 1px solid transparent;
  }

  .faq-content-inner {
    overflow: hidden;
    padding: 0 22px;
    opacity: 0;
    transform: translateY(-8px);
    /* Transición suave para la aparición progresiva del texto */
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
                padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  /* --- ESTADO ABIERTO ([open]): Despliegue progresivo --- */
  .faq-item[open] .faq-content {
    /* Pasa de altura 0 a la altura natural del contenido */
    grid-template-rows: 1fr;
    background-color: #f8fafc;
    border-color: #f1f5f9;
  }

  .faq-item[open] .faq-content-inner {
    opacity: 1;
    transform: translateY(0);
    padding-top: 16px;
    padding-bottom: 20px;
  }
</style>/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-30ba3c0 */<style>
  /* --- ESTRUCTURA GENERAL DEL ACORDEÓN --- */
  .faq-accordion-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px 10px;
    font-family: inherit;
  }

  .faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }

  /* --- CABECERA (Pregunta) --- */
  .faq-summary {
    padding: 18px 22px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .faq-summary::-webkit-details-marker {
    display: none;
  }

  /* --- ICONO (+) y (-) --- */
  .faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-left: 15px;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background-color: #0f172a;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  }

  .faq-icon::before {
    top: 6px;
    left: 0;
    width: 100%;
    height: 2px;
  }

  .faq-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 100%;
  }

  /* Estado Abierto: El icono rota y cambia fondo */
  .faq-item[open] .faq-summary {
    background-color: #f8fafc;
    color: #0f172a;
  }

  .faq-item[open] .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
  }

  /* --- CONTENEDOR Y ANIMACIÓN CONTINUA HACIA ABAJO --- */
  .faq-content {
    /* Usamos CSS Grid para el cálculo dinámico de altura */
    display: grid;
    grid-template-rows: 0fr;
    
    /* Animación fluida de la apertura vertical y la opacidad */
    transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                background-color 0.3s ease;
    
    background-color: #ffffff;
    border-top: 1px solid transparent;
  }

  .faq-content-inner {
    overflow: hidden;
    padding: 0 22px;
    opacity: 0;
    transform: translateY(-8px);
    /* Transición suave para la aparición progresiva del texto */
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
                padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  /* --- ESTADO ABIERTO ([open]): Despliegue progresivo --- */
  .faq-item[open] .faq-content {
    /* Pasa de altura 0 a la altura natural del contenido */
    grid-template-rows: 1fr;
    background-color: #f8fafc;
    border-color: #f1f5f9;
  }

  .faq-item[open] .faq-content-inner {
    opacity: 1;
    transform: translateY(0);
    padding-top: 16px;
    padding-bottom: 20px;
  }
</style>/* End custom CSS */