		.recursos-section {
    		padding: 10px 0;
    		width: 100%; /* Ocupar todo el ancho de la pantalla */
    		max-width: 1780px; /* Limitar el ancho máximo si es necesario */
    		margin: 0 auto; /* Centrar el contenedor */
		}

        .hero-banner {
        	background-image: url("img/free.png");
            background-size: cover;
            background-position: center;
            border-radius: 25px;
            padding: 60px 40px;
            margin-bottom: 40px;
            min-height: 200px;
            position: relative;
            overflow: hidden;
        	
        }

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px; /* opcional, para espaciar */
}
.resource-icon {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: contain;
	padding: 5px;
	margin: 5px;
	background-color: white;
}

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
        	bottom: 0;
        	border-radius: 25px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        	border-radius: 25px;
    		align-items: center;
        	
        }

        .recursos-title {
            color: white;
            font-size: 2.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .books-icon {
            background: rgba(255, 255, 255, 0.2);
            padding: 12px;
            border-radius: 8px;
            backdrop-filter: blur(5px);
        	width: 50%;
        	margin-left: auto;
        }

        .books-icon svg {
            width: 40px;
            height: 40px;
            fill: currentColor;
        }

        .silhouette {
            position: absolute;
            right: 80px;
            bottom: 20px;
            z-index: 1;
        }

        .silhouette svg {
            width: 80px;
            height: 80px;
            opacity: 0.7;
        }

        .resource-list {
            border-radius: 12px;
            padding: 30px;
        }

        .resource-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 25px 0;
            border-bottom: 2px solid #e9ecef;
        }

        .resource-item:last-child {
            border-bottom: none;
        }

        .resource-content {
            flex: 1;
            padding-right: 20px;
        }

        .resource-title {
            color: #0066cc;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            text-decoration: none;
        }

        .resource-title:hover {
            color: #0052a3;
            text-decoration: underline;
        }

        .resource-description {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        .download-btn {
            background-color: #ffc107;
            color: #000;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.2s ease;
            min-width: 140px;
            text-align: center;
        }

        .download-btn:hover {
            background-color: #e0a800;
            color: #000;
            text-decoration: none;
        }

        .pagination {
   		justify-content: center; /* Centrar horizontalmente */
    	gap: 15px; /* Espaciado entre los elementos */
    	margin: 30px 20px; /* Margen superior e inferior */
        text-align: center; 
}

        .page-dot {
    	display: inline-block; /* Asegura que los elementos se alineen en línea */
   	 	width: 35px; /* Ancho del botón */
    	height: 35px; /* Alto del botón */
    	border-radius: 50%; /* Bordes redondeados */
    	text-align: center; /* Centrar texto */
    	line-height: 35px; /* Centrar verticalmente el texto */
        margin: 0 5px;
}

        .page-dot.active {
            background-color: #ff6b6b;
            color: white;
        }

        .page-dot:not(.active) {
            background-color: white;
            color: #ff6b6b;
            border: 2px solid #ffebee;
        }

        .page-dot:not(.active):hover {
            background-color: #ffebee;
            text-decoration: none;
            color: #ff6b6b;
        }

        .app-promotion {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
        }

        .app-promotion-text {
            color: #17a2b8;
            font-size: 1.1rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .recursos-title {
                font-size: 2rem;
                margin-bottom: 20px;
            }
            
            .silhouette {
                display: none;
            }
            
            .resource-item {
                flex-direction: column;
                gap: 15px;
            }
            
            .resource-content {
                padding-right: 0;
            }
            
            .download-btn {
                align-self: flex-start;
            }
        }