 .faq-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 2rem; 
            background-color: white;
            border-radius: 18px; 
            overflow: hidden;
        }

        .faq-header {
            text-align: center;
            margin-bottom: .3rem; 
        }

        .faq-header h2 {
           
            font-weight: 600; 
            letter-spacing: -0.01em; 
            color: #1d1d1f; 
            margin-bottom: 0.75rem;
        }
        .faq-header p {           
            color: #6e6e73; 
            line-height: 1.4;
        }

        /* --- Preguntas y Respuestas --- */
        .faq-item {
            border-bottom: 1px solid #d2d2d7; 
            padding: .5rem 0; 
            padding-bottom: 0;
        }
        .faq-item:last-child{
            border-bottom: none;
        }

        .faq-question {
          color: black;
            font-size: 15px;
            font-weight: bold; 
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative; 
             transition: color 0.2s ease; 
        }
         .faq-question:hover {
            color: #0193AD; 
        }

        /
        .faq-question::after {
            content: '\203A';  
            
            color: #999;  
            transition: transform 0.3s ease; 
            margin-left: 10px; 

        }

        .faq-item.active .faq-question::after {
            transform: rotate(90deg);  
            color: #06c; 
        }
         .faq-question:hover::after {
            color: #06c; /
        }


        .faq-answer {            
            color: #424245; /
            line-height: 1.6; 
            margin-top: .5rem; 
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Curva de easing estilo Apple */
              padding-left: 0;
              padding-right: 0;
          font-size: 15px;
        }

        .faq-item.active .faq-answer {
            max-height: 800px; 
            padding-top: .2rem;
            padding-bottom: .2rem;
            
        }

        /* --- Estilos Responsivos --- */

        /* Ajustes para tablets */
        @media (max-width: 768px) {
             .faq-container {
                padding: 1.5rem;  
                margin: 20px auto; 
                border-radius: 0; 
                box-shadow: none; 
            }

            .faq-header h2 {
               
            }
            .faq-header p{
              
            }

            .faq-question {
               
            }
            .faq-question::after{
               
            }

            .faq-answer {
                
            }
        }

        /* Ajustes para móviles */
         @media (max-width: 480px) {

            .faq-header h2 {
               
            }
              .faq-header p{
                
            }
         }
