
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
             background-image: url('../recursos/patron.png');
        }

        .container {
         width: 100%;
            margin: 0 auto;
           
        }

        /* Banner Section */
        .banner {
            background-image: url('../recursos/icalp/preguntas.jpeg');
            background-size: cover;
            background-position: center;    
            height: 300px;
            display: flex;
            align-items: center;
            justify-content:right;
        }
        .banner::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 300px;
            background: rgba(0, 0, 0, 0.4); 
            z-index: 1;
        }
        .banner h1 {
            position: relative;
            color: white;
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-right: 50px;
          
            padding: 15px 25px;
            border-radius: 10px;
            font-family: oswald, sans-serif;
            padding-top: 150px;
            z-index: 2 ;
        }
    .banner h1::before {
    content: '';
    position: absolute;
    width: 5px;
    background: #f1c40f;
    top: 150px;      
    bottom: 0;
    left: -20px;     
    z-index: 2;     
    height: 30%;   
}
.banner h1 {
    
    opacity: 0;
    transform: translateX(100px); 
    animation: entradaDerecha 1s ease-out forwards;
}

@keyframes entradaDerecha {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
   /* Banner Sectio0n FIN */ 

       .header {
            padding: 15px 60px;
          
            position: relative;
            overflow: hidden;
            display: flex;
            gap: 6px;
            flex-direction: column;
             background-color: rgba(0, 0, 0, 0.885);

        }
            .datos1{
        
            justify-content: left;
        }
        
        .header .date {
            font-size: 0.95em;
            opacity: 0.8;
            margin-top: 5px;
            position: relative;
            z-index: 1;
            color: #f8f9fa;
        }

   /* Contenido principal */
.contenido-preguntas {
    padding: 40px 150px;
    background-color: transparent;
    border-top: 3px solid #f1c40f;
}

.contenido-preguntas section {
    margin-bottom: 30px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.contenido-preguntas h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #2c3e50;
    position: relative;
}

.contenido-preguntas h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #f1c40f;
    margin-top: 4px;
}

.contenido-preguntas p {
    font-size: 1.05em;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 15px;
}

/* Enlaces */
.contenido-preguntas a {
    color: #f1c40f;
    font-weight: bold;
    text-decoration: none;
}

.contenido-preguntas a:hover {
    text-decoration: underline;
}
/**/
/* Contenido principal */
.contenido-preguntas {
    padding: 40px 250px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(241,196,15,0.02) 100%);
    border-top: 3px solid #f1c40f;
    position: relative;
    
    /* 2 columnas responsivas */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
    gap: 30px;
}

.contenido-preguntas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(241,196,15,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212,175,55,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.contenido-preguntas section {
    padding: 30px;
    position: relative;
    border: 2px solid #d4af37; 
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 20px;
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
}

.contenido-preguntas section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbd24a 0%, #f1c40f 50%, #d4af37 100%);
    transform: translateX(-100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.contenido-preguntas section::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(241,196,15,0.2), transparent);
    border-radius: 22px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contenido-preguntas section:hover {
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.contenido-preguntas section:hover::before {
    transform: translateX(0);
}

.contenido-preguntas section:hover::after {
    opacity: 1;
}

/* Títulos */
.contenido-preguntas h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contenido-preguntas h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #fedc54, #f1c40f);
    margin-top: 8px;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(241, 196, 15, 0.3);
}

.contenido-preguntas section:hover h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contenido-preguntas section:hover h2::after {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
    width: 60px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* Párrafos */
.contenido-preguntas p {
    font-size: 1.05em;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 0;
    color: #34495e;
    transition: all 0.3s ease;
    font-weight: 400;
}

.contenido-preguntas section:hover p {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enlaces */
.contenido-preguntas a {
    font-weight: 600;
    text-decoration: none;
    color: #f39c12;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 4px;
    border-radius: 4px;
}

.contenido-preguntas a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f39c12, #f1c40f);
    transition: width 0.3s ease;
}

.contenido-preguntas a:hover::before {
    width: 100%;
}

.contenido-preguntas section:hover a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contenido-preguntas section:hover a::before {
    background: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .contenido-preguntas {
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contenido-preguntas section {
        padding: 25px;
        border-radius: 15px;
    }
    
    .contenido-preguntas h2 {
        font-size: 1.3em;
    }
}


/* Responsive */
@media (max-width: 768px) {
     /* Banner responsive */
    .banner {
        height: 250px;
        justify-content: right;
        
    }
    
    .banner::before {
        height: 250px;
    }
    
    .banner h1 {
        font-size: 2em;
        margin-right: 0;
        text-align: center;
        padding: 10px 20px;
        padding-top: 120px;
    }
    
    .banner h1::before {
        top: 120px;
        left: -15px;
        width: 4px;
    }
    
    /* Header responsive */
    .header {
        padding: 15px 30px;
    }
    
    .tituloo h1 {
        font-size: 2em;
    }
    
    .header .subtitle {
        font-size: 1.1em;
        text-align: center;
    }
    
    /*MAIN */
    /* Main content colegiarte */
    .colegiarte-content {
        padding: 20px 30px;
    }
    
    /* Intro section */
    .intro-section {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .intro-text {
        font-size: 1.1em;
        line-height: 1.6;
    }
    
    /* Benefits section */
    .benefits-section {
        gap: 20px;
        padding: 0 15px;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }
    
    .benefit-number {
        width: 50px;
        height: 50px;
        font-size: 1.3em;
        margin: 0 auto;
    }
    
    .benefit-content h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    
    .benefit-content p {
        font-size: 1em;
        line-height: 1.5;
    }
    
    /* Conclusion section */
    .conclusion-section {
        padding: 30px 20px;
        text-align: center;
    }
    
    .conclusion-text {
        font-size: 1.1em;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .cta-button {
        font-size: 1em;
        padding: 12px 25px;
        width: auto;
        max-width: 300px;
    }
  .benefit-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

}

/* Móviles (480px y menos) */
@media (max-width: 480px) {
    /* Banner móvil */
    .banner {
        height: 200px;
    }
    
    .banner::before {
        height: 200px;
    }
    
    .banner h1 {
        font-size: 1.6em;
        padding: 10px 15px;
        padding-top: 100px;
    }
    
    .banner h1::before {
        top: 100px;
        left: -10px;
        width: 3px;
    }
    
    /* Header móvil */
    .header {
        padding: 15px 20px;
    }
    
    .tituloo h1 {
        font-size: 1.8em;
    }
    
    .header .subtitle {
        font-size: 1em;
    }
     /* Main content colegiarte móvil */
    .colegiarte-content {
        padding: 15px 20px;
    }
    
    /* Intro section móvil */
    .intro-section {
        padding: 15px 10px;
        margin-bottom: 25px;
    }
    
    .intro-text {
        font-size: 1em;
        line-height: 1.5;
    }
    
    /* Benefits section móvil */
    .benefits-section {
        gap: 15px;
        padding: 0 10px;
    }
    
    .benefit-card {
        padding: 15px 12px;
        gap: 12px;
        border-radius: 8px;
    }
    
    .benefit-number {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }
    
    .benefit-content h3 {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
    
    .benefit-content p {
        font-size: 0.95em;
        line-height: 1.4;
    }
    
    /* Conclusion section móvil */
    .conclusion-section {
        padding: 25px 15px;
    }
    
    .conclusion-text {
        font-size: 1em;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .cta-button {
        font-size: 0.95em;
        padding: 10px 20px;
        width: 100%;
        max-width: 280px;
    }
    
    /* Date section móvil */
    .header .date {
        font-size: 0.85em;
        text-align: center;
    }
     .benefit-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* Móviles muy pequeños (360px y menos) */
@media (max-width: 360px) {
    .banner h1 {
        font-size: 1.4em;
        padding: 8px 12px;
        padding-top: 90px;
    }
    
    .banner h1::before {
        top: 90px;
    }
    
    .tituloo h1 {
        font-size: 1.6em;
    }
     /* Main content muy pequeño */
    .colegiarte-content {
        padding: 12px 15px;
    }
    
    /* Intro section muy pequeño */
    .intro-section {
        padding: 12px 8px;
        margin-bottom: 20px;
    }
    
    .intro-text {
        font-size: 0.95em;
        line-height: 1.4;
    }
    
    /* Benefits section muy pequeño */
    .benefits-section {
        gap: 12px;
        padding: 0 8px;
    }
    
    .benefit-card {
        padding: 12px 10px;
        gap: 10px;
    }
    
    .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
    }
    
    .benefit-content h3 {
        font-size: 1em;
        margin-bottom: 6px;
    }
    
    .benefit-content p {
        font-size: 0.9em;
        line-height: 1.3;
    }
    
    /* Conclusion section muy pequeño */
    .conclusion-section {
        padding: 20px 12px;
    }
    
    .conclusion-text {
        font-size: 0.95em;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .cta-button {
        font-size: 0.9em;
        padding: 9px 18px;
        width: 100%;
        max-width: 260px;
    }
    
    /* Date section muy pequeño */
    .header .date {
        font-size: 0.8em;
        padding: 0 5px;
    }
    .benefit-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    background-image: url('../recursos/patron.png');
}

.container {
    width: 100%;
    margin: 0 auto;
}

/* Banner Section */
.banner {
    background-image: url('../recursos/icalp/preguntas.jpeg');
    background-size: cover;
    background-position: center;    
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.banner h1 {
    position: relative;
    color: white;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-right: 50px;
    padding: 15px 25px;
    border-radius: 10px;
    font-family: 'Oswald', sans-serif;
    z-index: 2;
    opacity: 0;
    transform: translateX(100px); 
    animation: entradaDerecha 1s ease-out forwards;
}

.banner h1::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 60px;
    background: #f1c40f;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;     
    z-index: 2;     
}

@keyframes entradaDerecha {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Header Section */
.header {
    padding: 15px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 6px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.885);
}

.datos1 {
    justify-content: left;
}

.header .date {
    font-size: 0.95em;
    opacity: 0.8;
    margin-top: 5px;
    position: relative;
    z-index: 1;
    color: #f8f9fa;
}

/* Contenido principal */
.contenido-preguntas {
    padding: 40px 150px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(241,196,15,0.02) 100%);
    border-top: 3px solid #f1c40f;
    position: relative;
    
    /* 2 columnas responsivas */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.contenido-preguntas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(241,196,15,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212,175,55,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.contenido-preguntas section {
    padding: 30px;
    position: relative;
    border: 2px solid #d4af37; 
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 20px;
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
}

.contenido-preguntas section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbd24a 0%, #f1c40f 50%, #d4af37 100%);
    transform: translateX(-100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.contenido-preguntas section::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(241,196,15,0.2), transparent);
    border-radius: 22px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contenido-preguntas section:hover {
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.contenido-preguntas section:hover::before {
    transform: translateX(0);
}

.contenido-preguntas section:hover::after {
    opacity: 1;
}

/* Títulos */
.contenido-preguntas h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contenido-preguntas h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #fedc54, #f1c40f);
    margin-top: 8px;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(241, 196, 15, 0.3);
}

.contenido-preguntas section:hover h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contenido-preguntas section:hover h2::after {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
    width: 60px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* Párrafos */
.contenido-preguntas p {
    font-size: 1.05em;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 0;
    color: #34495e;
    transition: all 0.3s ease;
    font-weight: 400;
}

.contenido-preguntas section:hover p {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enlaces */
.contenido-preguntas a {
    font-weight: 600;
    text-decoration: none;
    color: #f39c12;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 4px;
    border-radius: 4px;
}

.contenido-preguntas a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f39c12, #f1c40f);
    transition: width 0.3s ease;
}

.contenido-preguntas a:hover::before {
    width: 100%;
}

.contenido-preguntas section:hover a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contenido-preguntas section:hover a::before {
    background: #ffffff;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets grandes (1024px y menos) */
@media (max-width: 1024px) {
    .contenido-preguntas {
        padding: 40px 80px;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    
    .banner h1 {
        font-size: 2.2em;
        margin-right: 40px;
    }
    
    .header {
        padding: 15px 50px;
    }
}

/* Tablets (768px y menos) */
@media (max-width: 768px) {
    /* Banner responsive */
    .banner {
        height: 250px;
        justify-content: center;
        padding: 0 20px;
    }
    
    .banner h1 {
        font-size: 2em;
        margin-right: 0;
        text-align: center;
        padding: 15px 20px;
    }
    
  
    
    /* Header responsive */
    .header {
        padding: 15px 30px;
    }
    
    .header .date {
        font-size: 0.9em;
        text-align: center;
    }
    
    /* Contenido principal responsive */
    .contenido-preguntas {
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contenido-preguntas section {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .contenido-preguntas h2 {
        font-size: 1.3em;
        margin-bottom: 12px;
    }
    
    .contenido-preguntas p {
        font-size: 1em;
        line-height: 1.6;
    }
}

/* Móviles (480px y menos) */
@media (max-width: 480px) {
    /* Banner móvil */
    .banner {
        height: 200px;
        padding: 0 30px;
         padding-top: 90px;
    }
    
    .banner h1 {
        font-size: 1.6em;
        padding: 12px 15px;
        line-height: 1.2;
    }
    
    /* Header móvil */
    .header {
        padding: 15px 20px;
    }
    
    .header .date {
        font-size: 0.85em;
        text-align: center;
        line-height: 1.4;
    }
    
    /* Contenido principal móvil */
    .contenido-preguntas {
        padding: 25px 15px;
        gap: 15px;
    }
    
    .contenido-preguntas section {
        padding: 20px 15px;
        border-radius: 12px;
        border-width: 1px;
    }
    
    .contenido-preguntas h2 {
        font-size: 1.2em;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .contenido-preguntas h2::after {
        width: 40px;
        height: 3px;
        margin-top: 6px;
    }
    
    .contenido-preguntas p {
        font-size: 0.95em;
        line-height: 1.5;
        text-align: left;
    }
    
    .contenido-preguntas a {
        padding: 3px 6px;
        font-size: 0.95em;
    }
}

/* Móviles muy pequeños (360px y menos) */
@media (max-width: 360px) {
    .banner {
        height: 180px;
        padding: 0 30px;
         padding-top: 90px;
    }
    
    .banner h1 {
        font-size: 1.4em;
        padding: 10px 12px;
    }
    
    .header {
        padding: 12px 15px;
    }
    
    .header .date {
        font-size: 0.8em;
        padding: 0 5px;
    }
    
    .contenido-preguntas {
        padding: 20px 10px;
        gap: 12px;
    }
    
    .contenido-preguntas section {
        padding: 18px 12px;
        border-radius: 10px;
    }
    
    .contenido-preguntas h2 {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
    
    .contenido-preguntas h2::after {
        width: 35px;
        height: 2px;
        margin-top: 5px;
    }
    
    .contenido-preguntas p {
        font-size: 0.9em;
        line-height: 1.4;
    }
    
    .contenido-preguntas a {
        font-size: 0.9em;
        padding: 2px 4px;
    }
}

/* Hover effects deshabilitados en dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    .contenido-preguntas section:hover {
        transform: translateY(0);
    }
    
    .contenido-preguntas section:hover::before {
        transform: translateX(-100%);
    }
    
    .contenido-preguntas section:active {
        transform: scale(0.98);
    }
}