  /* --- CONTENEDOR AL 90% --- */
  
  
        .custom-section {
	width: 100%;
	/* max-width: 1300px;  Ajustado para albergar botones más grandes 
            box-shadow: 0 2px 10px rgba(0,0,0,0.9)
			 background: #ffffff;
			margin-bottom: 50px;*/
	border-radius: 0px;
	text-align: center;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 0px;
        }

        .button-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .btn-wrapper {
            position: relative;
        }

        /* --- BOTONES 300x200 --- */
        .btn-toggle {
	width: 550px;
	height: 250px;
	border: 10px solid #FFF;
	border-radius: 15px;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column; /* Icono arriba, texto abajo */
	align-items: center;
	justify-content: center;
	color: white;
	transition: opacity 0.3s ease, transform 0.2s ease;
	/* Sombra muy sutil */
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	position: relative;
	overflow: hidden;
	padding: 0px;
        }
		  .btn-toggle2 {
	width: 410px;
	height: 200px;
	border: 10px solid #FFF;
	border-radius: 15px;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column; /* Icono arriba, texto abajo */
	align-items: center;
	justify-content: center;
	color: white;
	transition: opacity 0.3s ease, transform 0.2s ease;
	/* Sombra muy sutil */
	box-shadow: 0 4px 15px rgba(0,0,0,0.40);
	position: relative;
	overflow: hidden;
	padding: 0px;
	margin-bottom:20px;
        }
		

        /* Efecto Hover: Cambio de opacidad */
        .btn-toggle:hover {
            opacity: 0.8;
            /*transform: translateY(-3px);*/
        }
		 .btn-toggle2:hover {
            opacity: 0.5;
            /*transform: translateY(-3px);*/
        }
        /* Texto editable dentro del botón */
        .btn-text {
	width: 100%;
	font-size: 1em;
	line-height: 1;
	font-weight: 600;
	margin-top: 85px;
	/*text-shadow: 1px 1px 4px rgba(0,0,0,0.5);*/
	background-color: rgba(255, 255, 255, 0.9);
	padding-top: 20px;
	padding-bottom: 35px;
	font-family: 'Quicksand', sans-serif;
	color: #000;
        }
		
		.btn-text b {
	font-weight: bolder;
	font-size: 1.6em;
	letter-spacing: -0.02em;
}
 
        .btn-toggle i {
            font-size: 40px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        }

       
       /* --- SUBMENÚ ABSOLUTO --- */
        .submenu {
	display: none;
	position: absolute;
	top: 50%; /* Centrado sobre el botón */
	left: 50%;
	transform: translate(-50%, -50%);
	width: 95%; /* Proporcional al botón */
	background: rgba(255, 255, 255, 0.6);
	border-radius: 12px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.2);
	z-index: 100;
	border: 1px solid #CCC;
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
        }

        .submenu.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

       .close-btn {
	position: absolute;
	top: 8px;
	right: 12px;
	color: #FFF;
	cursor: pointer;
	font-size: 20px;
	bottom: 10px;
	border-radius: 50%;
	background-color: #008ecd;
	height: 50px;
	width: 50px;
	padding-top: 14px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
        }
		
		
        .submenu a {
	display: block;
	padding: 12px;
	text-decoration: none;
	color: #626566;
	;
	font-weight: bolder;
	line-height: 18px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	font-size: 1.3em;
        }

        .submenu a:last-child { border-bottom: none; }
        .submenu a:hover { background: #f8f8f8; color: #000; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translate(-50%, -45%); }
            to { opacity: 1; transform: translate(-50%, -50%); }
        }

        /* Ajuste para móviles */
   @media (max-width: 600px) {
    .btn-text {
        font-size: 0.5em;
        margin-top: 10px;
        line-height: 18px;
    }

            .btn-toggle {
                width: 90vw; /* En móviles muy pequeños ocupa casi todo el ancho */
                height: 100px;
            }
			.btn-toggle2 {
                width: 35vw; /* En móviles muy pequeños ocupa casi todo el ancho */
                height: 100px;
				margin-bottom: 5px;
            }
			
			        }
					 /* Clases de Imagen CSS (Edita las URLs aquí) */
      
		.img-1 {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../img/bto-tema1.png');	
}
        .img-2 {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../img/bto-tema2.png');	
}
.img-3 {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../img/bto-tema3.png');	
}
.img-4 {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../img/bto-tema4.png');
	
}
.img-5 {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../img/bto-tema5.png');

}
.img-6 {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../img/bto-tema6.png');

}

.img-7 {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../img/bto-tema7.png');
	
}

.img-8 {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../img/bto-tema8.png');
	
}


