 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
/*	 background: #f3f6fb;      */  
background-image: url('https://oriental.gob.mx/transparencia/conac/2025/2do/bgbdy.jpg'); /* Tu imagen de fondo */
  /*background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que se repita */
  background-size: cover; /* Cubre todo el espacio sin distorsionar */
	
		background-attachment: fixed;
    
 }


        .seccion-1 {
            height: 150px;
            width: 100%;
         /*   background-color: hotpink; /* Color ilustrativo */
        }

        /* Sección 2 */
        .seccion-2 {
            height: 270px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
		/*	background-image: "nombre.png";*/
           background-color: #f3f6fb; /* Color ilustrativo */
        }

        /* Sección 3 */
        .seccion-3 {
            width: 100%;
            height: auto;
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .btn-tramite {
            height: 40px;
            width: auto;
            padding: 0 15px;
            border-radius: 10px;
            background-color: #a1132e;
            color: #ffffff;
            border: none;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        .btn-tramite:hover {
            background-color: #879d86;
        }

        .btn-tramite.active {
            background-color: #a19c88;
        }

        /* Sección 4 */
        #infodoc {
            width: 1300px;
            height: auto;
            min-height: 50px;
            background-color: #f7f6f1;
            color: #494241;
            font-size: 17px;
            padding: 25px;
            margin-top: 20px;
            box-sizing: border-box;
            display: none; /* Oculto inicialmente */
            border-radius: 8px;
            line-height: 1.6;
        }

        .titulo-info {
            font-weight: bold;
            font-size: 22px;
            margin-bottom: 10px;
            display: block;
        }
        
        .requisitos-label {
            color: #a1132e;
            font-weight: bold;
            display: block;
            margin: 10px 0;
        }